Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
例如,在 Windows 系统上将“X”灰显。
如果 Gtk 不能说服窗口管理器,您可以随时连接“删除事件”信号并从回调中返回 True。这样做 Gtk 假定回调处理该信号并且什么都不做。
import gtk window = gtk.Window() window.connect('delete-event',lambda widget, event: True)
只需在有问题的窗口上调用set_deletablewith即可。False只要 GTK 可以说服窗口管理器使窗口不可关闭,它就会起作用。
set_deletable
False