在 QT 中跟踪一组可检查按钮的最简单方法是什么?
我在 QT 中有六个可检查的按钮,我希望一次只检查其中一个按钮(如单选按钮)。我可能可以用大量信号和槽来做到这一点,但是有没有更简单的方法来做到这一点?
我正在寻找类似于 QGroupBox 和 QRadioButtons 如何协同工作的东西。
谢谢
I have six checkable push buttons in QT, and I want it so that only one of the buttons are checked at one time (like radio buttons). I could probably do it with lots of signals and slots, but is there a easier way to do this?
I'm looking for something similar to how the QGroupBox and QRadioButtons work together.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为您正在寻找 http://doc.trolltech.com/4.7/qbuttongroup.html< /a> .
确保所有按钮都是可检查的,使该组独占,对每个按钮使用 addButton() 并使用它运行。
I think you're looking for http://doc.trolltech.com/4.7/qbuttongroup.html .
Make sure all of your buttons are checkable, make the group exclusive, use addButton() for each button and run with it.