1. 使用 qt designer 设计界面 在 qt designer 中设计 界面,然后保存为 .ui文件。
将 .ui 文件 转化成 .h文件
2.三种方式 使用 .h 文件 这里我们先命名 为 hello.h 文件
1.直接引用
在main.cpp 文件中,添加 hello.h头文件,然后直接引用.h中的函数
2. 单一继承
新建my_class.h类文件,然后再my_class.h类文件中,添加hello.h Qdailog.h
生成一个新的类,
我们使用新的类。
3. 多重继承
新建新的类
class my_class:public qdailog:public hello
3 qmake -project 生成项目管理
qmake 生成makefile 文件
make 编译
运行 .exe文件
阅读(1450) | 评论(0) | 转发(0) |