这篇文章是看了 qt creator 简单的一个实验程序,自己记录下的 小实验流程。
实现的功能 :
ui 界面一共有 3 个部件: pushbutton,linetext ,label
在 linetext中输入 字符,然后按下 pushbutton,最后 输入的字符 显示在label 上1.file->new file or project
2.qt4 gui application
3.路径,然后默认选择
4,在 ui界面上 放置 3 个部件 如下
5.点击 Edit signals/slots
6.点击 pushbutton 到 ui空的地方
然后,点击右边的 edit ,添加 槽,控制函数 buttonclickhander()
6.设置好 信号和槽 后,ui界面有如下
7.在 mianwindow.h 中添加 buttonclickhander() 声明
- public slots:
-
void buttonclickhander();
8.在 mainwindow.cpp 中添加 初始化 buttonclickhander()
- void MainWindow::buttonclickhander()
-
{
-
ui->label->setText(ui->lineEdit->text());
-
}
9.编译,测试
在 lineexit中输出字符,按下 pushbutton 后,显示在 label 上
阅读(6040) | 评论(0) | 转发(0) |