[ライブラリ]Pyside6

#GUI
from PySide6.QtWidgets import (
  #アプリ全体を管理
    QApplication,
  #一番基本となるウィンドウや部品
    QWidget,
  #ボタン
    QPushButton,
  #1行入力欄
    QLineEdit,
)

レイアウト

#縦方向に並べるレイアウト
QVBoxLayout,

#横方向に並べるレイアウト
QHBoxLayout,

#表のように並べるレイアウト
QGridLayout,

コメント