Notice
Recent Posts
Recent Comments
Link
아미(아름다운미소)
Python pyqt tableWidget double click event 본문
Python pyqt tableWidget double click event
#-*- coding: utf-8 -*-
self.tableWidget.doubleClicked.connect(self.tableWidget_doubleClicked)
def treeMedia_doubleClicked(self):
row = self.tableWidget.currentIndex().row()
column = self.tableWidget.currentIndex().column()
print(row, column)
'랭귀지 > python' 카테고리의 다른 글
| Python PyQt5 setStyleSheet 적용 방법 (0) | 2018.12.21 |
|---|---|
| Python PyQt QDate 형식으로 날짜변경 (0) | 2018.12.20 |
| python PyQt에서 QCalendarWidget을 사용하여 날짜선택하기 (0) | 2018.12.18 |
| Python PyQt5 messagebox (0) | 2018.12.17 |
| Python PyQt5 QtSql 사용예 (0) | 2018.12.14 |
Comments