일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- MS-SQL
- tensorflow
- 리눅스
- GIT
- 유니티
- Linux
- 맛집
- Unity
- javascript
- 다이어트
- swift
- python
- ubuntu
- sqlite
- ASP
- pandas
- 함수
- PyQt5
- MySQL
- mssql
- urllib
- IOS
- Excel
- PyQt
- port
- node.js
- flutter
- 날짜
- PER
- 라즈베리파이
목록PyQt5 (19)
아미(아름다운미소)
PyQt5 QInputDialog 다이얼로그팝업 #-*- coding: utf-8 -*- ''' Created on 2018. 12. 10. @author: bhm ''' from PyQt5.QtWidgets import (QInputDialog, QApplication) app = QApplication([]) dialog = QInputDialog() dialog.show() app.exec_()
Python PyQt5 submenu Python PyQt5 서브메뉴 예제 # -*- coding: utf-8 -*- import sys from PyQt5.QtWidgets import QMainWindow, QAction, QMenu, QApplication class Example(QMainWindow): def __init__(self): super().__init__() self.initUI() def initUI(self): menubar = self.menuBar() fileMenu = menubar.addMenu('파일') impMenu = QMenu('열기', self) impAct = QAction('서브메뉴열기', self) impMenu.addAction(impAct) newAct ..
QHeaderView의 헤더를 클릭하면 QTableView를 정렬하는 방법입니다. 다음 과 같은 함수를 DataFrame사용하면 올바르게 정렬됩니다. def sort(self, Ncol, order): """Sort table by given column number.""" self.layoutAboutToBeChanged.emit() self.data = self.data.sort_values(self.headers[Ncol], ascending=order == Qt.AscendingOrder) self.layoutChanged.emit()
python PyQt5 현재시간 #-*- coding: utf-8 -*- ''' Created on 2018. 12. 3. @author: bhm ''' from PyQt5.QtCore import QTime current_time = QTime.currentTime() text_time = current_time.toString("hh:mm:ss") time_msg = "현재시간: " + text_time print(time_msg) 현재시간: 13:14:46
stylesheet를 사용하지 않고 색상을 변경할 수 있습니다. Palette= QtGui.QPalette() Palette.setColor(QtGui.QPalette.Text, QtCore.Qt.red) self.lineEdit.setPalette(Palette)
PyQt5 , QAction 사용하여 menubar 만들기 #-*- coding: utf-8 -*- ''' Created on 2018. 11. 29. @author: bhm ''' from PyQt5.QtWidgets import QMainWindow, QAction, qApp, QApplication from PyQt5.QtGui import QIcon class Example(QMainWindow): def __init__(self): super().__init__() exit_action = QAction(QIcon('exit.png'), "&Exit", self) # exit_action = QAction('&Exit', self) exit_action.setShortcut('Ctrl+Q') e..
Python PyQt5 combobox import sys from PyQt5 import QtCore, QtWidgets from PyQt5.QtWidgets import QMainWindow, QLabel, QGridLayout, QWidget, QComboBox from PyQt5.QtCore import QSize, QRect class ExampleWindow(QMainWindow): def __init__(self): QMainWindow.__init__(self) self.setMinimumSize(QSize(300, 300)) self.setWindowTitle("PyQt5 Combobox example") centralWidget = QWidget(self) self.setCentralW..
pyqt5 QTableWidget QTableWidget() 으로 생성 합니다. row, column 을 설정합니다. 아이템을 설정합니다. self.itemTable = QTableWidget() self.itemTable.setRowCount(2) self.itemTable.setColumnCount(2) self.itemTable.setItem(0, 0, QTableWidgetItem("(0,0)")) self.itemTable.setItem(0, 1, QTableWidgetItem("(0,1)")) self.itemTable.setItem(1, 0, QTableWidgetItem("(1,0)")) self.itemTable.setItem(1, 1, QTableWidgetItem("(1,1)")) 동..