我在Linux C ++中使用Gtkmm包进行GUI编程。我想从另一个类关闭一个gui窗口来调用gui函数。有什么建议吗?
答案 0 :(得分:-1)
我认为thois会帮助你从其他窗口跑出和关闭寡妇。
#include "currentWindow.h"
#include "NewWindow.h"
currentWindow::currentWindow() :
{
...
...
...
NewWindow NW;
// to run new window
Gtk::Main::run(NW);
//to close it
NW.hide();
}