今天千鋒扣丁學堂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):code
def __init__(self):視頻
super().__init__() self.initUI()
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培訓之pyqt5實現工具欄文字圖片同時顯示的所有內容了,但願能給你們一個參考,想要了解更多關於Python開發方面內容的小夥伴,請關注扣丁學堂Python培訓官網、微信等平臺,扣丁學堂IT職業在線學習教育有專業的Python講師爲您指導,此外扣丁學堂老師精心推出的Python視頻教程定能讓你快速掌握Python從入門到精通開發實戰技能。