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.
在 c# 中,我可以在 RadioButton 上应用此属性
所以 RadioButton 像 PushButton 一样显示,但它仍然是一个单选按钮。
有没有办法在 c++ 中使用 Qt 来做到这一点?也许以编程方式。
使用QPushButton和setCheckable( true )。这将使您获得与QRadioButton.
QPushButton
setCheckable( true )
QRadioButton