- 关注博主,后期持续更新系列文章
- 如果有错误感谢请大家批评指出,及时修改
- 感谢大家点赞👍收藏⭐评论✍
输入框实现helloworld | QLineEdit的使用
文章编号:Qt 学习笔记 / 08
一、图形化实现
1. 实现步骤
- 创建一个Qt项目,参考文章《使用QtCreator创建及运行项目 | 项目初始代码解释》
- 打开widget.ui文件,将Line Edit控件拖拽至界面,并对输入框进行编辑文字
- 点击运行项目即可
输出结果:
二、纯代码实现
1. 实现步骤
- 创建一个Qt项目,参考文章《使用QtCreator创建及运行项目 | 项目初始代码解释》
- 打开widget.cpp文件,使用QLineEdit新建一个对象,使用使用setText对输入框的内容进行编辑。
- 在使用QLineEdit时,需要包含头文件
#include <QLineEdit>
2. 代码演示
#include "widget.h" #include "ui_widget.h" #include <QLineEdit> Widget::Widget(QWidget *parent) : QWidget(parent) , ui(new Ui::Widget) { ui->setupUi(this); QLineEdit* edit = new QLineEdit(this); edit -> setText("hello world"); } Widget::~Widget() { delete ui; }
输出结果: