当前位置 : 主页 > 网络编程 > 其它编程 >

PyQt5工具栏添加图标,并绑定点击事件

来源:互联网 收集:自由互联 发布时间:2023-07-02
自己最近做的软件需要一个工具栏,然后点击工具栏的图标需要进行一定的操作创建工具栏toolBar主窗口添加工具栏addToolBar创建工具按钮refresf_button按钮添加图 自己最近做的软件需要一个
自己最近做的软件需要一个工具栏,然后点击工具栏的图标需要进行一定的操作创建工具栏toolBar主窗口添加工具栏addToolBar创建工具按钮refresf_button按钮添加图

自己最近做的软件需要一个工具栏,然后点击工具栏的图标需要进行一定的操作

  • 创建工具栏 toolBar
  • 主窗口添加工具栏 addToolBar
  • 创建工具按钮 refresf_button
  • 按钮添加图标与文字
  • 连接按钮点击事件
  • 工具栏添加按钮 toolBar.addWidget(refrefh_botton)

self.toolBar = QToolBar(MainWindow)self.toolBar.setObjectName("toolBar")self.toolBar.setContentsMargins(QMargins(20, 0, 20, 0))MainWindow.addToolBar(Qt.TopToolBarArea, self.toolBar)self.refresh_button = QPushButton()self.refresh_button.setText('刷新')refresh_icon = QIcon()refresh_icon.addPixmap(QPixmap('../images/refresh.png'), QIcon.Normal, QIcon.Off)self.refresh_button.setIcon(refresh_icon)self.refresh_button.setIconSize(QSize(25, 25))self.refresh_button.setStyleSheet(QSS.ButtonStyle)self.refresh_button.clicked.connect(self.refresh_treewidget)self.toolBar.addWidget(self.refresh_button)【感谢龙石为本站提供数据交换平台,http://www.longshidata.com/pages/exchange.html】

上一篇:Shellif中的正则表达式使用详解
下一篇:没有了
网友评论