小猿圈是全免費?Python開發之pyqt5實現工具欄文字圖片同時顯示

對於學習Python人工智能的朋友來講,不少知識點都沒有接觸過,須要一點點的去接觸,觀看視頻等等,今天小猿圈Python講師分享pyqt5實現工具欄文字圖片同時顯示,但願對你學習Python的你有所幫助。編程


以下所示:app

import syside

from PyQt5.QtWidgets import QMainWindow, QTextEdit, QAction, QApplication工具

from PyQt5.QtGui import QIcon學習

from PyQt5.QtCore import Qtui

class Example(QMainWindow):人工智能

def __init__(self):cdn

super().__init__()視頻

self.initUI()blog

def initUI(self):

textEdit = QTextEdit()

self.setCentralWidget(textEdit)

exitAction = QAction(QIcon('images/exit.png'), 'Exit',self)

exitAction.setShortcut('Ctrl+Q')

exitAction.setStatusTip('Exit application')

exitAction.triggered.connect(self.close)

self.statusBar()

menubar = self.menuBar()

fileMenu = menubar.addMenu('&File')

fileMenu.addAction(exitAction)

toolbar = self.addToolBar('Exit')

# toolbar.setToolButtonStyle(Qt.ToolButtonTextUnderIcon) # 文字圖片垂直排列

toolbar.setToolButtonStyle(Qt.ToolButtonTextBesideIcon) # 文字圖片水平排列

toolbar.addAction(exitAction)

self.setGeometry(300, 300, 350, 250)

self.setWindowTitle('Main window')

self.show()

if __name__ == '__main__':

app = QApplication(sys.argv)

ex = Example()

sys.exit(app.exec_())

Python是一個能夠持續發展的技術,不管是什麼方向均可以有本身的一番做爲,你有想過學習Python交流羣:242719133,想學習Python能夠到小猿圈去直接觀看,小猿圈是全免費?恭喜你答對了,所有免費這裏面從基礎到實戰的全部學習資料,能夠知足你提高本身,爲你實現編程夢想的起點。

相關文章
相關標籤/搜索