码迷,mamicode.com
首页 > 其他好文 > 详细

pyqt5 工具栏文字图片同时显示

时间:2019-02-25 18:33:40      阅读:243      评论:0      收藏:0      [点我收藏+]

标签:ddt   ==   工具栏   button   sel   color   dac   文字   port   

import sys
from PyQt5.QtWidgets import QMainWindow, QTextEdit, QAction, QApplication
from PyQt5.QtGui import QIcon
from PyQt5.QtCore import Qt

class Example(QMainWindow):

    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_())

 

pyqt5 工具栏文字图片同时显示

标签:ddt   ==   工具栏   button   sel   color   dac   文字   port   

原文地址:https://www.cnblogs.com/liugp/p/10432239.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!