码迷,mamicode.com
首页 > 其他好文 > 详细

QRadioButton 使用方法

时间:2015-06-23 06:20:17      阅读:202      评论:0      收藏:0      [点我收藏+]

标签:

 

QRadioButton 控件是Qt中实现多选一功能的控件,它的使用方法如下:

声明控件:

QRadioButton *rbutton;

 

然后实现它的响应函数:

void YourClass::on_rbutton_toggled(bool state) {
  // Implement here
  if (state) {
    // TO DO
  }
  else {
    // TO DO
  }
}

 

别忘了在头文件中加入私有槽的声明:

private slots:
  void on_rbutton_toggled(bool state);

 

QRadioButton 使用方法

标签:

原文地址:http://www.cnblogs.com/grandyang/p/4594463.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!