0
這裏是我的測試:GtkD中MainWindows show()和showAll()方法有什麼區別?
import gtk.Main;
import gtk.MainWindow;
import gtk.Label;
void main(string[] args)
{
Main.init(args);
auto window = new MainWindow("My Window");
window.add(new Label("Label1"));
window.show();
Main.run();
}
當我更換Main.show()
與Main.showAll()
它能正常工作,但是我找不到任何在此功能的文檔:http://api.gtkd.org/src/gtk/MainWindow.html什麼是這兩種方法,並何處之間的差異我找到文檔?