首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 开发语言 > 编程 >

Qt 菜单一用窗口

2012-09-18 
Qt 菜单调用窗口通过Qt的菜单选项调用另外一个子窗口,有两种方法:VS 2008 +Qt4.7项目文件:MainWindow.uiMa

Qt 菜单调用窗口

通过Qt的菜单选项调用另外一个子窗口,有两种方法:

VS 2008 +Qt4.7

项目文件:

MainWindow.ui

MainWindow.h

MainWindow.cpp

?

1、手动调用窗口

a)、在MainWindow.h中声明两个函数,在MainWindow.cpp中定义该两个函数。

?

void MainWindow::createActions(){    newAction = new QAction(tr("&New"), this);    newAction->setIcon(QIcon(":/images/new.png"));    newAction->setShortcut(QKeySequence::New);    newAction->setStatusTip(tr("Create a new spreadsheet file"));    connect(newAction, SIGNAL(triggered()), this, SLOT(newForm()));    //绑定了该菜单选项打开窗口事件}

?

?

//打开新窗口槽函数void MainWindow::newForm(){    examinationForm = new ExaminationForm();    examinationForm->show();}//examinationForm 在MainWindow.h里已经声明为成员变量。

?b)、在MainWindow.cpp 类的构造器中调用creatActions()即可打开菜单选项对应的窗口

?

2、可以利用Qt自身的机制

? ? 在MainWindow.ui生成的临时文件ui_MainWindow.h文件中,有句:

?

?

//MainWindow.hprivate slots: //打开新界面 void on_newFormAction_triggered();? ??
//Maindow.cpp//打开界面void MainWindow::on_newFormAction_triggered(){    newForm = new NewForm ();    newForm ->show();}

?

?

明显第二种比较方便,也比较类似MFC。

热点排行