python根据窗口标题找句柄,将窗口前置活动
2021-03-12 22:28
标签:tle color enable rgba update copy code 前置 else python根据窗口标题找句柄,将窗口前置活动 标签:tle color enable rgba update copy code 前置 else 原文地址:https://www.cnblogs.com/xkdn/p/14073396.htmlimport time, threading, copy
import win32api, win32con
import win32gui
import win32gui
def zhaojb(aa):
mu=0
jh=[]
hwnd_title = dict()
def get_all_hwnd(hwnd,mouse):
if win32gui.IsWindow(hwnd) and win32gui.IsWindowEnabled(hwnd) and win32gui.IsWindowVisible(hwnd):
hwnd_title.update({hwnd:win32gui.GetWindowText(hwnd)})
win32gui.EnumWindows(get_all_hwnd, 0)
for h,t in hwnd_title.items():
if t is not "":
if aa in t:
jh.append(h)
if len(jh)==0:
print("找不到相应的句柄")
else:
return jh
ab=zhaojb("SM")
jbid=ab[0]#有可能找到多个
print(jbid)
win32gui.SetForegroundWindow(jbid)#将相应的窗口前置为活动窗口
上一篇:Unity 自定义日志保存
下一篇:Java中this关键字的使用
文章标题:python根据窗口标题找句柄,将窗口前置活动
文章链接:http://soscw.com/index.php/essay/63846.html