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
- 라즈베리파이
- python
- IOS
- javascript
- Excel
- swift
- node.js
- ubuntu
- tensorflow
- sqlite
- Linux
- ASP
- 다이어트
- PyQt
- pandas
- 날짜
- PyQt5
- 맛집
- PER
- 유니티
- GIT
- MySQL
- mssql
- urllib
- MS-SQL
- Unity
- 리눅스
- 함수
- flutter
- port
Archives
목록submenu (1)
아미(아름다운미소)
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