K.K

Results 1 comments of K.K

上のコードで動作しました。 インデント付きを置いておきます。 def find_window(class_name): def get_window(wnd, arg): nonlocal window if wnd.isVisible() and not wnd.getOwner(): if wnd.getClassName() == class_name: window = wnd return False return True window = None Window.enum(get_window, None)...