前提・実現したいこと
- 作成したTableViewにヘッダーを作成したい
- データの挿入をしたい
- 作成したデータのセルを編集できないようにしたい
import sys from PyQt5.QtCore import * from PyQt5.QtWidgets import * import time import threading import subprocess class MainWindow(QWidget): def __init__(self, parent=None): super(MainWindow, self).__init__(parent) self.setGeometry(300, 50, 300, 250) self.setWindowTitle('MainWindow') self.tableView = QTableView(self) self.tableView.setObjectName(u"tableView") self.tableView.setGeometry(10, 10, 280, 180) self.pushButton = QPushButton(self) self.pushButton.setObjectName(u"pushButton") self.pushButton.setGeometry(220, 200, 60, 30) self.pushButton.setText(QCoreApplication.translate("pushButton", u"ボタン", None)) # ヘッダーの設定 header = ["データ1" , "データ2" , "データ3" , "データ4"] self.setHeaderTableView(header) # 挿入するデータ row = [10 , 20 , 30 , 40] self.pushButton.clicked.connect(lambda: self.InputTableView(row)) # ヘッダーを作成したい def setHeaderTableView(self,header): # データを挿入したい def InputTableView(self,row): if __name__ == '__main__': app = QApplication(sys.argv) main_window = MainWindow() main_window.show() sys.exit(app.exec_())
宜しくお願いいたします
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。