Menu Problems
hello friends
Actually i am not able to contruct a menu in my App..the code i have written is like that…
- #include "menumainwindow.h"
- {
- connect(showAct, SIGNAL(triggered()),label1, SLOT(show()));
- connect(hideAct, SIGNAL(triggered()),label1, SLOT(hide()));
- connect(exitAct, SIGNAL(triggered()),qApp, SLOT(quit()));
- bar = menuBar()->addMenu("&File");
- bar->addAction(showAct);
- bar->addAction(hideAct);
- bar->addSeparator();
- bar->addAction(exitAct);
- setCentralWidget(bar);
- }
here it will display show,hide,exit menu but i want it to show when i click the “file”..so anything wrong in the code..please suggest
regards
Rahul
5 replies
You must log in to post a reply. Not a member yet? Register here!
