例如首先你必须找到Skype的hwnd
hwnd = win32gui.FindWindow(None, 'skype')
而不是他所有的子窗口及其标题
child = ???
任何的想法?
此代码显示了具有一定长度hwnd
的 EditPlus 子窗口:WindowsText
编辑
您必须找到hwnd
您的应用程序,然后将此句柄与EnumChildWindows
. 我用它扩展了示例代码。获得应用程序hwnd
后,您只能枚举其窗口。当您给 0 时hwnd
,EnumChildWindows
您将获得所有正在运行的窗口的句柄。在我的代码中添加一些打印并检查它!
扩展代码:
import win32gui
MAIN_HWND = 0
def is_win_ok(hwnd, starttext):
s = win32gui.GetWindowText(hwnd)
if s.startswith(starttext):
print s
global MAIN_HWND
MAIN_HWND = hwnd
return None
return 1
def find_main_window(starttxt):
global MAIN_HWND
win32gui.EnumChildWindows(0, is_win_ok, starttxt)
return MAIN_HWND
def winfun(hwnd, lparam):
s = win32gui.GetWindowText(hwnd)
if len(s) > 3:
print("winfun, child_hwnd: %d txt: %s" % (hwnd, s))
return 1
def main():
main_app = 'EditPlus'
hwnd = win32gui.FindWindow(None, main_app)
print hwnd
if hwnd < 1:
hwnd = find_main_window(main_app)
print hwnd
if hwnd:
win32gui.EnumChildWindows(hwnd, winfun, None)
main()