1

dialog.run()出于某种原因,即使通过标准调用显示,我的程序中的对话框也不会关闭。它们显示并返回代码,但按钮不会关闭它们。这是发生这种情况的一些代码:

//Inside constructor for my window class
load_dlg = new FileChooserDialog("Select file to open...", this,
FileChooserAction.OPEN,
Gtk.Stock.CANCEL, ResponseType.CANCEL,
Gtk.Stock.OPEN, ResponseType.ACCEPT, null);
//...
//Inside an event handler method
if(load_dlg.run() == Gtk.ResponseType.ACCEPT){
    image_backend = new Pixbuf.from_file(load_dlg.get_filename()); // This works, and it's in a try clause.

一切都很好,只是返回代码后对话不会关闭。与 相同AboutDialog。不过,在 Python 中一切正常。

4

1 回答 1

3

你可以刚load_dlg.hide()回来load_dlg.run()

于 2012-06-22T05:22:48.510 回答