Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- PyQt5
- urllib
- 날짜
- 리눅스
- 라즈베리파이
- IOS
- sqlite
- python
- pandas
- 다이어트
- ASP
- node.js
- Unity
- javascript
- 함수
- ubuntu
- tensorflow
- PyQt
- MS-SQL
- GIT
- MySQL
- 맛집
- 유니티
- Excel
- flutter
- swift
- port
- PER
- mssql
- Linux
Archives
목록submenu (1)
아미(아름다운미소)
Python PyQt5 submenu
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 ..
랭귀지/python
2018. 12. 11. 09:30