-
[PyQt] style().standardIcon() ๋ฉ์๋์์ ์ฌ์ฉํ ์ ์๋ ์์ด์ฝ ์ข
๋ฅ ๋ฐ ์ซ์
PyQt style().standardIcon() ๋ฉ์๋์์ ์ฌ์ฉํ ์ ์๋ ์์ด์ฝ ์ข
๋ฅ ๋ฐ ์ซ์ ๋ค์ด๊ฐ๋ฉฐ PyQt์๋ ๊ธฐ๋ณธ์ ์ผ๋ก ๋ด์ฅ๋์ด ์๋ ํ์ค ์์ด์ฝ(Standard Icon)๋ค์ด ์๋ค. ์์ด์ฝ ํ์ผ์ ์ง์ ๊ตฌํ์ง ์๊ณ ์ฌ์ฉํ ์ ์์ผ๋ฏ๋ก, ํ๋ก๊ทธ๋จ์ ๋ง๋ค ๋ ํ์ฉํ๋ฉด ์ ์ฉํ๋ค. ์์ด์ฝ ํ์ธํด๋ณด๊ธฐ import sys from PyQt5.QtWidgets import QApplication, QGridLayout, QPushButton, QStyle, QWidget class Window(QWidget): def __init__(self): super(Window, self).__init__() icons = sorted([attr for attr in dir(QStyle) if attr.start..
1
2023.05.17