gpt4 book ai didi

如何用python 实现老板键功能

转载 作者:qq735679552 更新时间:2022-09-29 22:32:09 26 4
gpt4 key购买 nike

CFSDN坚持开源创造价值,我们致力于搭建一个资源共享平台,让每一个IT人在这里找到属于你的精彩世界.

这篇CFSDN的博客文章如何用python 实现老板键功能由作者收集整理,如果你对这篇文章有兴趣,记得点赞哟.

主要实现目标:为多个指定的程序实现统一的老板键,一键隐藏多个指定的应用程序的窗口及任务栏.

1.获取所有顶层窗口

import win32guihwnd_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)})# EnumWindows枚举所有顶层窗口win32gui.EnumWindows(get_all_hwnd, 0)# 打印出所有窗口名不为空的窗口for key in list(hwnd_title): if hwnd_title[key] is "": del hwnd_title[key]

如何用python 实现老板键功能

2.手动选择需要设置老板键的程序

import tkinter as tkroot = tk.Tk()root.geometry("800x400")# 列表显示所有顶层窗口listBox = tk.Listbox(root, selectmode="multiple")listBox.pack(side="left", expand="yes", fill="both")for i, j in hwnd_title.items(): if j is not "": listBox.insert("end", str(i) + ":" + j)bt = tk.Button(root, text='选择')bt.pack()root.mainloop()

如何用python 实现老板键功能

3.隐藏或显示选中程序

# 通过GetWindowRect方法获取隐藏前的窗口位置及尺寸信息left, top, right, bottom = win32gui.GetWindowRect()def close_windows(aimLists): for k in aimLists: # 隐藏程序窗口 win32gui.SetWindowPos(lists[k][0], 0, 0, 0, 0, 0, SWP_HIDEWINDOW)def open_windows(aimLists): for k in aimLists: # 显示程序窗口 t = lists[k] win32gui.SetWindowPos(t['hwnd'], 0, t['left'], t['top'], t['right'] - t['left'], t['bottom'] - t['top'],  SWP_SHOWWINDOW)

4.设置显示隐藏快捷键

这里设置F7显示,F8隐藏,F12中止 。

import PyHook3import pythoncomdef onKeyboardEvent(event): key = event.Key if key == "F7": close_windows(aimLists) if key == "F8": open_windows(aimLists) if key == "F12": win32gui.PostQuitMessage(0) return Truehm = PyHook3.HookManager()hm.KeyDown = onKeyboardEventhm.HookKeyboard()# 开启监听pythoncom.PumpMessages()

5.最终效果

如何用python 实现老板键功能

以上就是python 老板键功能的实现步骤的详细内容,更多关于python 老板键功能的资料请关注我其它相关文章! 。

原文链接:https://www.cnblogs.com/chenjy1225/p/14362264.html 。

最后此篇关于如何用python 实现老板键功能的文章就讲到这里了,如果你想了解更多关于如何用python 实现老板键功能的内容请搜索CFSDN的文章或继续浏览相关文章,希望大家以后支持我的博客! 。

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com