QT中获取选中的radioButton的两种方法
2013-01-14 15:55:33 来源:WEB开发网核心提示: 方法一:采用对象名称进行获取QRadioButton* pbtn = qobject_cast<QRadioButton*>(ui->BG->checkedButton()); QString name = pbtn->objectName(); if(!QString:
方法一:采用对象名称进行获取
QRadioButton* pbtn = qobject_cast<QRadioButton*>(ui->BG->checkedButton()); QString name = pbtn->objectName(); if(!QString::compare(name, "radioButton")) { QMessageBox::information(this, "Tips", "red chosed!", QMessageBox::Ok); } else if(!QString::compare(name, "radioButton_2")) { QMessageBox::information(this, "Tips", "blue chosed!", QMessageBox::Ok); } else { QMessageBox::information(this, "Tips", "black chosed!", QMessageBox::Ok); }
该代码片段中,首先使用qobject_cast将checkedButton()函数返回的QAbstractionButton转换为其子类类型QRadioButton.然后,获取被选中按钮的对象名。这可以通过获取objectName这个属性获取。再稍作判断即可得知结果。注:BG是手动添加的QGroupButton类型,radioButton和radioButton_2,radioButton_3都是UI中添加的radioButton控件。
方法二:通过button的ID来获取
位于构造函数中的代码(初始选中第一个按钮):
ui->BG->setId(ui->radioButton, 0); ui->BG->setId(ui->radioButton_2, 1); ui->BG->setId(ui->radioButton_3, 2); ui->radioButton->setChecked(true);
响应信号的槽函数或其他函数中的代码:
int a = ui->BG->checkedId(); switch(a) { case 0: QMessageBox::information(this, "Tips", "Red chosed!", QMessageBox::Ok); break; case 1: QMessageBox::information(this, "Tips", "blue chosed!", QMessageBox::Ok); break; case 2: QMessageBox::information(this, "Tips", "black chosed!", QMessageBox::Ok); break; default: break; }
- ››获取Android手机型号,系统版本,App版本号等信息
- ››获取Windows xp系统高权限无需注销用户
- ››QT中获取选中的radioButton的两种方法
- ››获取checkedListBox 选中的项并且移动
- ››获取ios手机的mac地址的函数
- ››Qt HMAC hash 算法
- ››获取Android手机中SD卡内存信息
- ››获取计算机电源或者电池状态
- ››Qt中调用windows系统api在QComboBox中显示系统当前...
- ››Qt之实现360安全卫士主界面(三)
- ››获取免费“高权重外链资源”的三个简单方法
- ››获取JavaScript变量的类型(Finding Out Class Na...
更多精彩
赞助商链接