我找到这个代码,看意思应该可以获取到输入法名,但我不会用。。https://blog.csdn.net/jacky_qiu/article/details/6016841
我现在在用的一段PY代码,可以准确获取当前是中/英文输入法,比QK的是否为中文输入法判断的准,比如QK在US语言下,也可能判断是中文,甚至还可以切换中英状态。。。先用PY判断中/英输入法,然后再用QK控制输入法中英文状态
import ctypes
import time
import os
user32 = ctypes.WinDLL('user32', use_last_error=True)
curr_window = user32.GetForegroundWindow()
thread_id = user32.GetWindowThreadProcessId(curr_window, 0)
klid = user32.GetKeyboardLayout(thread_id)
lid = klid & (2**16 - 1)
lid_hex = hex(lid)
print(lid_hex)
if lid_hex == '0x409':
text='当前的输入法状态是英文输入模式\n\n'
elif lid_hex == '0x804':
text='当前的输入法是中文输入模式\n\n'
else:
text='当前的输入法既不是英文输入也不是中文输入\n\n'