Qt/PyQt5 강좌2024. 9. 2. 21:31PyQt5 라벨 사용 예제 - QLabel, QFont, StyleSheet
PyQt5 라벨 사용 예제( QLabel, QFont, StyleSheet ) 입니다.2024. 9. 2 최초작성 import sysfrom PyQt5.QtWidgets import QApplication, QWidget, QVBoxLayout, QLabelfrom PyQt5.QtGui import QFontfrom PyQt5.QtCore import Qtclass StyleExample(QWidget): def __init__(self): super().__init__() self.initUI() def initUI(self): layout = QVBoxLayout() # 기본 라벨 label1 = QLabel('기본 라벨') ..