如何将GtkFileChooserButton重置为其初始状态,即在选择文件之前?

码:

#!/usr/bin/env python3

import gi
gi.require_version('Gtk', '3.0')
from gi.repository import Gtk

def file_changed(filechooserbutton):
    print("File selected: %s" % filechooserbutton.get_filename())

window = Gtk.Window()
window.set_title("FileChooserButton")
window.set_default_size(150, -1)
window.connect("destroy", Gtk.main_quit)

filechooserbutton = Gtk.FileChooserButton(title="FileChooserButton")
filechooserbutton.connect("file-set", file_changed)
window.add(filechooserbutton)

window.show_all()

Gtk.main()


选择文件之前:

python - GtkFileChooserButon在选择文件之前重置为初始状态-LMLPHP

选择文件后:

python - GtkFileChooserButon在选择文件之前重置为初始状态-LMLPHP

最佳答案

GtkFileChooserButton实现了GtkFileChooser,因此您可以使用unselect_all函数。

关于python - GtkFileChooserButon在选择文件之前重置为初始状态,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/39518302/

10-12 22:48