qradiobutton函数
时间: 2023-09-12 12:04:23 浏览: 78
QRadioButton(单选按钮)
以下是 `QRadioButton` 常用的一些函数:
- `QRadioButton(QWidget *parent = nullptr)`:构造函数,创建一个单选按钮。
- `void setText(const QString &text)`:设置单选按钮的文本内容。
- `QString text() const`:获取单选按钮的文本内容。
- `void setChecked(bool checked)`:设置单选按钮是否被选中。
- `bool isChecked() const`:获取单选按钮是否被选中。
- `void toggle()`:切换单选按钮的选中状态。
- `void setAutoExclusive(bool enable)`:设置单选按钮是否自动排除其他单选按钮的选中状态。
- `bool autoExclusive() const`:获取单选按钮是否自动排除其他单选按钮的选中状态。
以上是 `QRadioButton` 类的一些常用函数,还有其他的一些函数可以去官方文档查看。
阅读全文