Chinaunix首页 | 论坛 | 博客
  • 博客访问: 288235
  • 博文数量: 95
  • 博客积分: 618
  • 博客等级: 中士
  • 技术积分: 455
  • 用 户 组: 普通用户
  • 注册时间: 2011-03-28 13:39
文章分类

全部博文(95)

文章存档

2015年(65)

2013年(1)

2012年(10)

2011年(19)

分类: C/C++

2011-03-28 23:30:10

一个空白的主窗体,啥东西也没有的~~~~~~~~~~
用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) |
0

上一篇:没有了

下一篇:解决fgets函数Segmentation fault错误

给主人留下些什么吧!~~