Home > QTableWidget


QTableWidgetを中央に配置する方法

方法1: ウィジェットの中央配置を設定する方法from PyQt5.QtWidgets import QApplication, QTableWidget, QTableWidgetItem, QHeaderView, QVBoxLayout, QWidget app = QApplication([]) window = QWidget() layout = QVBoxLayout(window) table = QTableWidget() # テーブルの設定とデータの追加 layout.addWidget(table) layout.setAlignment(Qt.AlignCenter>>More