检查 Gtk mainloop 是否 运行
Checking to see if Gtk mainloop is running
有没有一种方法可以检查 Gtk.main() 循环是否存在?类似于 threading.is_alive() 函数?非常感谢任何帮助:)
您可以使用 Gtk.main_level()
function:
Gtk.main_level()
Returns: the nesting level of the current invocation of the main loop
换句话说,return 值为 0 表示没有主循环是 运行。
有没有一种方法可以检查 Gtk.main() 循环是否存在?类似于 threading.is_alive() 函数?非常感谢任何帮助:)
您可以使用 Gtk.main_level()
function:
Gtk.main_level()
Returns: the nesting level of the current invocation of the main loop
换句话说,return 值为 0 表示没有主循环是 运行。