QRadioButton 控件是Qt中实现多选一功能的控件,它的使用方法如下:
声明控件:
QRadioButton *rbutton;
然后实现它的响应函数:
void YourClass::on_rbutton_toggled(bool state) { // Implement here if (state) { // TO DO } else { // TO DO } }
别忘了在头文件中加入私有槽的声明:
on_rbutton_toggled(bool state);
本文转自博客园Grandyang的博客,原文链接:使用方法QRadioButton ,如需转载请自行联系原博主。