1.创建一个"空的 Qt项目"
2.在项目中添加 main.cpp 文件 ,并添加代码
在项目文件列表中的项目文件夹helloworld上右击,"添加新文件"-"C++Source File"-设置名字 main.cpp 默认路径 - 完成.
1 //包含文件头 2 #include<QApplication> 3 #include<QDialog> 4 #include<QLabel> 5 #include<QTextCodec> //文本编码转换功能 6 7 //主函数 8 int main(int argc,char *argv[]) 9 { 10 QApplication a(argc,argv); //管理应用程序的资源,任何一个Qt GUI都要创建 11 QTextCodec::setCodecForTr(QTextCodec::codecForName("UTF-8")); 12 //设置显示中文 13 14 QDialog w; //创建一个对话框界面 15 w.resize(400,300); //设置对话框的大小 16 QLabel label(&w); //穿件一个label控件 17 label.move(120,120); //设置label的位置 18 label.setText(QObject::tr("Hello World! 你好 Qt!")); //设置显示字符 19 w.show(); //显示对话框界面 20 return a.exec(); //让application对象进入事件循环,接收产生的事件. 21 }
OK,编译 运行成功.
3.添加UI界面
同上,添加新文件,选择 Qt-Qt设计师界面, 选择 Dialog without buttons 下一步
设置界面内容
设置QDialog类对象名
构建生成 ui 头文件.
修改 main.cpp 代码:
#include"ui_hellodialog.h" //包含ui文件头 ""表示项目目录中 int main(int argc,char *argv[]) { QApplication a(argc,argv); //管理资源 QDialog w; //创建对话框对象 Ui::helloDialog ui; //ui对象 ui.setupUi(&w); //给窗口w设置ui w.show(); //显示窗口 return a.exec(); //循环资源 }
编译运行,OK.