• 博客主页:Duck Bro 博客主页
  • 系列专栏:Qt 专栏
  • 关注博主,后期持续更新系列文章
  • 如果有错误感谢请大家批评指出,及时修改
  • 感谢大家点赞👍收藏⭐评论✍

输入框实现helloworld | QLineEdit的使用

文章编号:Qt 学习笔记 / 08


文章目录

  • 输入框实现helloworld | QLineEdit的使用
  • 一、图形化实现
  • 1. 实现步骤
  • 二、纯代码实现
  • 1. 实现步骤
  • 2. 代码演示



一、图形化实现

1. 实现步骤

  1. 创建一个Qt项目,参考文章《使用QtCreator创建及运行项目 | 项目初始代码解释》
  2. 打开widget.ui文件,将Line Edit控件拖拽至界面,并对输入框进行编辑文字
  3. 点击运行项目即可
  4. 【Qt 学习笔记】输入框实现helloworld | QLineEdit的使用_qt

  5. 输出结果:
  6. 【Qt 学习笔记】输入框实现helloworld | QLineEdit的使用_c++_02


二、纯代码实现

1. 实现步骤

  1. 创建一个Qt项目,参考文章使用QtCreator创建及运行项目 | 项目初始代码解释》
  2. 打开widget.cpp文件,使用QLineEdit新建一个对象,使用使用setText对输入框的内容进行编辑。
  3. 在使用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;
}

输出结果:

【Qt 学习笔记】输入框实现helloworld | QLineEdit的使用_c++_03