Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个 QMainWindow,它的工具栏有一堆 QIcon 按钮。单击这些按钮在 QStackedWidget 中的小部件之间切换。基本上,按钮用作选项卡,打开程序的不同部分。现在,我想做的是在相应的小部件处于活动状态时使特定按钮看起来被按下,这样更容易看到程序的哪个部分处于活动状态。像这样:
我在谷歌搜索时用 20 种不同的方式改写了它并查看了手册,但我仍然不知所措。我可能在这里遗漏了一些非常明显的东西。
当然,我错过了一些非常明显的东西:P 这是解决方案:
# Create the button and make it checkable self.testButton = QtGui.QAction(QtGui.QIcon('images/icons/test.png'), 'Test', self) self.testButton.setCheckable(True) # Mark the button as checked self.testButton.setChecked(True)