QMainWindow学习-1

什么是QMainWindow?

QmainWindow类继承QWidget类,它是QT提供的一个主应用程序窗口类,它包含菜单栏(MenuBar),工具栏(ToolBar),状态栏(StatusBar)以及提供给用户的工作空间(CentralWidget)等。

例子

#include <QApplication>
#include <QMainWindow>
#include <QLabel>
int main(int argc, char *argv[])
{
    QApplication app(argc, argv);
    QMainWindow window;
    QLabel *label = new QLabel("<center>Central Widget</center>");
    window.setCentralWidget(label);
    window.show();
    return app.exec();
}
setCentralWidget就是用于设置label为 Central Widget


posted @ 2011-11-25 16:45  移动应用开发  阅读(209)  评论(0编辑  收藏  举报