Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我是 QT 编程和 UI 设计的新手。当用户单击子菜单或菜单项时,我想打开一个新窗口。当用户单击按钮时,我可以成功打开一个新窗口。
在我的主窗口的图像下方。当用户单击“密码”菜单项时,我想打开新窗口
当用户单击测试按钮时,新窗口将成功打开。
任何帮助将不胜感激。
创建一个插槽:
public slots: void slot();
triggered()用这个插槽连接信号
triggered()
connect({your QAction}, SIGNAL(triggered()), this, SLOT(slot()));
从插槽打开窗口。
void {your QMainWindow}::slot(){ //open yout window here }