QT | 编写代码实现计算圆面积
文章目录
- `QT` | 编写代码实现计算圆面积
- 1.新建项目
- 选择基类
- 加载生成的文件列表
- 2.添加代码
- 2-1.修改dialog.h文件:
- 2-1-1.添加如下代码:
- 2-1-2.添加头文件:
- 2-2.修改dialog.c文件:
- 2-3.完成程序功能
- 2-4.最终效果
1.新建项目
选择基类
加载生成的文件列表
2.添加代码
2-1.修改dialog.h文件:
#ifndef DIALOG_H
#define DIALOG_H
#include <QDialog>
#include <QLabel>
#include <QLineEdit>
#include <QPushButton>
class Dialog : public QDialog
{
Q_OBJECT
public:
Dialog(QWidget *parent = 0);
~Dialog();
private:
QLabel *label1, *label2;
QLineEdit *lineEdit;
QPushButton *button;
};
#endif // DIALOG_H
2-1-1.添加如下代码:
private:
QLabel *label1, *label2;
QLineEdit *lineEdit;
QPushButton *button;
2-1-2.添加头文件:
#include <QLabel>
#include <QLineEdit>
#include <QPushButton>
Q_OBJECT宏的作用是启动
QT5元对象系统
的一些特性(如支持信号和槽等),必须放置到类定义的私有区中。
2-2.修改dialog.c文件:
label1 = new QLabel(this);
label1->setText(tr("请输入圆的半径:"));
lineEdit = new QLineEdit(this);
label2 = new QLabel(this);
button = new QPushButton(this);
button->setText(tr("显示对应圆的面积"));
QGridLayout *mainlayout = new QGridLayout(this);
mainlayout->addWidget(label1,0,0);
mainlayout->addWidget(lineEdit, 0, 1);
mainlayout->addWidget(label2, 1, 0);
mainlayout->addWidget(button, 1, 1);
添加头文件
#include <QGridLayout>
界面运行效果如下:
2-3.完成程序功能
class Dialog : public QDialog
{
// ......
private slots:
void showArea();
};
Dialog::Dialog(QWidget *parent)
: QDialog(parent)
{
label1 = new QLabel(this);
label1->setText(tr("请输入圆的半径:"));
lineEdit = new QLineEdit(this);
label2 = new QLabel(this);
button = new QPushButton(this);
button->setText(tr("显示对应圆的面积"));
QGridLayout *mainlayout = new QGridLayout(this);
mainlayout->addWidget(label1,0,0);
mainlayout->addWidget(lineEdit, 0, 1);
mainlayout->addWidget(label2, 1, 0);
mainlayout->addWidget(button, 1, 1);
connect(button, SIGNAL(clicked()),this, SLOT(showArea()));//在输入框中输入圆的半径,点击按钮,显示圆的面积
connect(lineEdit, SIGNAL(textChanged(QString)), this, SLOT(showArea()));//输入圆的半径,直接显示圆的面积
}
2-4.最终效果
3.参考
《QT5开发及示例(第3版)》
->陆文周(主编)
QT5 | 第一个QT程序
QT | 手写代码实现HelloWorld