PyQt5 textbox example
self.textbox = QLineEdit(self) self.textbox.move(20, 20) self.textbox.resize(280,40) PyQt5 textbox example The example below creates a window with a textbox. import sys from PyQt5.QtWidgets import QMainWindow, QApplication, QWidget, QPushButton, QAction, QLineEdit, QMessageBox from PyQt5.QtGui import QIcon from PyQt5.QtCore import pyqtSlot class App(QMainWindow): def __init__(self): super().__in..
언어별(프로그램별) 유용한 정보/파이썬
2022. 4. 6. 09:40