2

我有一个可以打开文件选择器的按钮。但是,我得到了这个错误:

(gui.py:9127): Gtk-CRITICAL **: gtk_widget_grab_default: 断言 `gtk_widget_get_can_default (widget)' 失败

(gui.py:9127):Gtk-CRITICAL **:_gtk_file_chooser_embed_initial_focus:断言“GTK_IS_FILE_CHOOSER_EMBED(chooser_embed)”失败

这是我的代码:

from gi.repository import Gtk

def clicked(widget):
    response = filechooser.run()
    if response == Gtk.ResponseType.OK:
        print 'ok'
    else:
        print 'cancel'
        filechooser.destroy()

builder = Gtk.Builder()
builder.add_from_file('gui.glade')
filechooser = builder.get_object('filechooser1')
builder.get_object('button1').connect('clicked', clicked)
builder.get_object('window1').show_all()
Gtk.main()

你知道为什么会这样吗?

还有一个问题:我有一个文件选择器按钮。(None)如果我已经设置了路径,如何使该按钮在单击取消时不更改路径?

4

1 回答 1

9

好吧,我明白了。要解决此问题(gui.py:9127): Gtk-CRITICAL **: gtk_widget_grab_default: assertion 'gtk_widget_get_can_default (widget)' failed,您应该can defaultCommon Properties文件选择器按钮更改为Yes.

并且要解决(gui.py:9127): Gtk-CRITICAL **: _gtk_file_chooser_embed_initial_focus: assertion 'GTK_IS_FILE_CHOOSER_EMBED (chooser_embed)' failed,您应该更改filechooser.destroy()filechooser.hide()

于 2013-06-14T08:20:39.560 回答