
エントリーの編集

エントリーの編集は全ユーザーに共通の機能です。
必ずガイドラインを一読の上ご利用ください。
python GUI入門 QtDesigner + pySide 基礎 - Qiita
記事へのコメント0件
- 注目コメント
- 新着コメント
このエントリーにコメントしてみましょう。
注目コメント算出アルゴリズムの一部にLINEヤフー株式会社の「建設的コメント順位付けモデルAPI」を使用しています

- バナー広告なし
- ミュート機能あり
- ダークモード搭載
関連記事
python GUI入門 QtDesigner + pySide 基礎 - Qiita
# This Python file uses the following encoding: utf-8 import os from pathlib import Path import s... # This Python file uses the following encoding: utf-8 import os from pathlib import Path import sys from PySide6 import * from PySide6.QtCore import * from PySide6.QtGui import * from PySide6.QtWidgets import * from Ui_MainWindow import Ui_MainWindow class MainWindow(QtWidgets.QMainWindow, Ui_MainWindow): def __init__(self): super(MainWindow, self).__init__() self.setupUi(self) self.ui = Ui_MainWi