一个空白的主窗体,啥东西也没有的~~~~~~~~~~
用qtcreator建立空的QT工程
添加头文件mainwindow.h:
#ifndef MAINWINDOW_H
#define MAINWINDOW_H
#include
#include
class mainwindow:public QMainWindow //继承QMainWindow类
{
Q_OBJECT //没有用到信号槽啥的可以不要,习惯写上吧
public:
mainwindow();
};
#endif // MAINWINDOW_H
添加mainwindow.cpp
#include "mainwindow.h"
#include
mainwindow::mainwindow() //构造函数
{
setWindowTitle(tr("你好"));
resize(800,600);
}
main.cpp:
#include
#include
#include
int main(int argc,char *argv[])
{
QApplication a(argc,argv);
QTextCodec::setCodecForTr(QTextCodec::codecForName("UTF-8")); //中文编码
mainwindow mainWindow;
mainWindow.show();
return a.exec();
}
编译运行,一个空窗口就出来了^_^
阅读(3063) | 评论(0) | 转发(0) |