【Qt 学习笔记】Qt常用控件 | 按钮类控件 | Radio Button的使用及说明
#include <QApplication>
#include <QWidget>
#include <QRadioButton>
#include <QHBoxLayout>
int main(int argc, char **argv) {
QApplication app(argc, argv);
QWidget window;
window.setWindowTitle("Radio Button Example");
QHBoxLayout *layout = new QHBoxLayout(&window);
QRadioButton *radioButton = new QRadioButton("Radio Button");
layout->addWidget(radioButton);
window.setLayout(layout);
window.show();
return app.exec();
}
这段代码演示了如何在Qt应用程序中创建一个基本的单选按钮。首先,包含必要的Qt头文件。然后,在应用程序对象创建后,我们创建一个窗口部件和水平布局。接下来,我们创建一个QRadioButton对象并将其添加到布局中。最后,我们设置窗口部件的布局并显示窗口。程序进入Qt事件处理循环,等待用户操作。
评论已关闭