QMainWindows

2019独角兽企业重金招聘Python工程师标准>>> hot3.png

1、创建菜单栏

    //使用QMene和QMenuBar类再主窗口创建菜单栏。使用QMenu控件的成员函数addAction()添加QAction类的菜单栏
    QAction *newAct = new QAction(QIcon(":/images/new.png"), tr("&New"), this);
    newAct->setShortcuts(QKeySequence::New);
    newAct->setStatusTip(tr("Create a new file"));

    QAction *openAct = new QAction(QIcon(":/images/open.png"), tr("&Open..."), this);
    openAct->setShortcuts(QKeySequence::Open);
    openAct->setStatusTip(tr("Open an existing file"));

    QMenu *fileMenu = menuBar()->addMenu(tr("&File"));
    fileMenu->addAction(newAct);
    fileMenu->addAction(openAct);

//    connect(newAct, SIGNAL(triggered()), this, SLOT(newFile()));
//    connect(openAct, SIGNAL(triggered()), this, SLOT(open()));

QMainWindows_第1张图片

2、创建工具栏

QMainWindows_第2张图片

QMainWindows_第3张图片

3、创建锚街控件

QMainWindows_第4张图片

QMainWindows_第5张图片

4、设置中心组件

858f12ea2c440b15081e466c0701314acda.jpg

QMainWindows_第6张图片

5、添加状态栏

896f6946e1f8dca682f5b7bca400734a044.jpg

afea69e9f178018f22804cc4040264eae09.jpg

 

 

---

 

转载于:https://my.oschina.net/u/3919756/blog/2054645

你可能感兴趣的:(QMainWindows)