Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 코스피
- Python
- homebridge
- ConnectedHomeIP
- Espressif
- 나스닥
- 애플
- 오블완
- 월패드
- 공모주
- matter
- 퀄컴
- 파이썬
- 매터
- 현대통신
- 홈네트워크
- 엔비디아
- 국내주식
- 티스토리챌린지
- 힐스테이트 광교산
- 배당
- esp32
- MQTT
- Apple
- 해외주식
- Home Assistant
- Bestin
- RS-485
- 미국주식
- raspberry pi
Archives
- Today
- Total
목록QMenuBar (1)
YOGYUI
PyQt5 - QMenuBar location in macOS
Mac OS에서 PyQt5로 윈도우를 만들어서 메뉴바를 추가하면 default로 상단 작업표시줄에 메뉴바가 표시된다 (테스트 당시 OSX 버전은 11.5.2, PyQt5 버전은 5.15.4) [테스트 코드] if __name__ == '__main__': import sys from PyQt5.QtGui import * from PyQt5.QtCore import * from PyQt5.QtWidgets import * app = QCoreApplication.instance() if app is None: app = QApplication(sys.argv) window = QMainWindow() menubar = QMenuBar(window) window.setMenuBar(menubar) menu1..
Software/Python
2021. 9. 17. 08:59