[C++] for循环实现九九乘法表

时间:2025-04-04 07:43:13
Python向窗口发送快捷键的两种方法

qq_25361135: 第一种方法在窗口为非活动窗口的情况下可以用的,但是实现不了组合键。代码如下: hwnd = find_window_by_title('Note') # 通过窗口类名获取窗口句柄 print("hwnd1", hex(hwnd) ) Hwnd = (hwnd, 0, "NotepadTextBox", None) print("Hwnd2", hex(Hwnd)) ret = (hwnd, win32con.WM_KEYDOWN, 0x74, 0) #F5 ret = (hwnd, win32con.WM_KEYUP, 0x74, 0) #F5 #上面单个键可行,下面组合键无响应。不知道原因 (1) ret = (hwnd, win32con.WM_KEYDOWN, 0xA2, 0)# 0xA2 左 Ctrl 键 ret = (hwnd, win32con.WM_CHAR, 0x53, 0) #S (1) ret = (hwnd, win32con.WM_KEYUP, 0x53, 0) ret = (hwnd, win32con.WM_KEYUP, 0xA2, 0)