Gtkmm在课外关闭了一个gui窗口

时间:2017-04-17 09:21:27

标签: c++ gtk gtkmm

我在Linux C ++中使用Gtkmm包进行GUI编程。我想从另一个类关闭一个gui窗口来调用gui函数。有什么建议吗?

1 个答案:

答案 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();
}