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