所以我试图通过使用pyHook感知鼠标左键点击来打开一个tkinter窗口,我想让新打开的窗口获得焦点。问题是无论我尝试什么样的聚焦方法,当前窗口将始终保持焦点而不是焦点切换到新的tkinter窗口。这是代码:
from tkinter import *
import pyHook
import pythoncom
def open_GUI():
root = Tk()
root.title('test')
entry_box = Entry(root, font=("Calibri", 11))
entry_box.focus()
entry_box.pack(fill=X, side=RIGHT, expand=True)
root.after(1, lambda: root.focus_set())
root.mainloop()
return True
def MouseLeftDown_Func(event):
print('mouse')
open_GUI()
return True
def KeyDown_Func(event):
print('key')
return True
hooks_manager = pyHook.HookManager()
hooks_manager.KeyDown = KeyDown_Func
hooks_manager.MouseLeftDown = MouseLeftDown_Func
hooks_manager.HookKeyboard()
hooks_manager.HookMouse()
pythoncom.PumpMessages()
我认为问题在于,当我左键单击当前窗口时,焦点优先于最近点击的窗口(当前窗口),并且忽略调用tkinter窗口焦点的任何命令。
有人知道如何在左键单击后将焦点切换到新的tkinter窗口吗?
答案 0 :(得分:0)
导入pyhook后,我用这个替换了另一个解决方案。这有点复杂,但当你试图窃取键盘焦点时,就会发生这种情况。可能有一种更简单的方法可以做到这一点。此解决方案的关键是告诉应用程序在创建条目之前将根窗口设置为前景,但是在事件中。如果您不使用Windows,那么也有Linux解决方案。
from ctypes import Structure, c_ulong, byref, c_char_p, windll
from tkinter import *
import pyHook
import pythoncom
class POINT(Structure):
_fields_ = [("x", c_ulong), ("y", c_ulong)]
def open_GUI():
root = Tk()
root.title('test')
root.update()
root.after(20, lambda r=root: createEntry(r))
root.mainloop()
return True
def setRootForeground(root):
# Get window coordinates
x = root.winfo_rootx() + 1
y = root.winfo_rooty() + 1
# Move the mouse cursor to x,y
windll.user32.SetCursorPos(x, y)
# Get the pointer coordinates into a Windows-compatible format
pt = POINT()
windll.user32.GetCursorPos(byref(pt))
# Get the window handle under the pointer -- should be root.
hwnd = windll.user32.WindowFromPoint(pt)
# Make it the foreground window
windll.user32.SetForegroundWindow(hwnd)
def createEntry(root):
setRootForeground(root)
root.focus_set()
entry_box = Entry(root, font=("Calibri", 11))
entry_box.pack(fill=X, side=RIGHT, expand=True)
entry_box.focus_set()