大家好,又见面了,我是你们的朋友全栈君。
想要看更加舒服的排版、更加准时的推送
关注公众号“不太灵光的程序员”
每日八点有干货推送
python获取窗口句柄
在Windows下获取窗口句柄时操作系统版本和软件版本对获取有影响,就会出现在本地调试正常的程序,交付使用的时候报错。
查看windows所有可显示的窗口句柄及窗口名称。
# -*- coding: utf-8 -*-
""" File Name windows_gui Created on 2019-11-06 @author: jj """
import win32gui
hwnd_title = {
}
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 :
print (h, t.decode("gbk"))
if __name__ == '__main__':
pass
结果 :
(263618L, u’\u5fae\u4fe1’)
(66630L, u’\u5c0f\u706b\u7bad\u901a\u7528\u52a0\u901f’)
(131362L, u’Program Manager’)
(132782L, u’python\u4e2d\u7684\u89e3\u7801\u4e0e\u7f16\u7801 – zhang_cherry\u7684\u535a\u5ba2 – CSDN\u535a\u5ba2 – Google Chrome’)
(67384L, u’\u57ce\u5e02 – \u4e00\u4e09’)
(131572L, u’\u4efb\u52a1\u7ba1\u7406\u5668’)
(329592L, u’work [F:\work] – …\yanchi_auto\windows_gui.py [work] – PyCharm’)
(329492L, u’lot_irrigated_litong_v3 [F:\jfzx_svn\001litongqu3P\03jieguan\03Development\lot_irrigated_litong_v3] – …\bus_prediction\tasks_apscheduler.py [lot_irrigated_litong_v3] – PyCharm’)
(133012L, u’archive_record_gate_report @lot_canal_hongsipu (aliyun) – \u8868 – Navicat Premium’)
(131690L, u’TIM’)
推荐阅读:
发布者:全栈程序员-用户IM,转载请注明出处:https://javaforall.cn/158950.html原文链接:https://javaforall.cn
【正版授权,激活自己账号】: Jetbrains全家桶Ide使用,1年售后保障,每天仅需1毛
【官方授权 正版激活】: 官方授权 正版激活 支持Jetbrains家族下所有IDE 使用个人JB账号...