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
													
											
												
												- flutter
- Excel
- node.js
- tensorflow
- PyQt
- MySQL
- Unity
- pandas
- 다이어트
- 리눅스
- python
- swift
- port
- 유니티
- 라즈베리파이
- javascript
- ASP
- sqlite
- IOS
- 맛집
- 함수
- ubuntu
- PER
- 날짜
- GIT
- PyQt5
- Linux
- urllib
- mssql
- MS-SQL
													Archives
													
											
											
											
											목록menu (1)
아미(아름다운미소)
PyQt5 , QAction 사용하여 menubar 만들기 #-*- coding: utf-8 -*- ''' Created on 2018. 11. 29. @author: bhm ''' from PyQt5.QtWidgets import QMainWindow, QAction, qApp, QApplication from PyQt5.QtGui import QIcon class Example(QMainWindow): def __init__(self): super().__init__() exit_action = QAction(QIcon('exit.png'), "&Exit", self) # exit_action = QAction('&Exit', self) exit_action.setShortcut('Ctrl+Q') e..
				랭귀지/python
				
				2018. 11. 30. 11:30