我使用Python 3.4.1通过win32com.client控制Windows应用程序。我可以激活它,我可以发送击键,点击等。 现在我想知道是否有办法调整窗口大小并将其设置为特定位置。我找不到方法。 这里有一些代码片段,所以你知道我在说什么
import win32api, win32con, time, win32com.client, random, sys, winsound, datetime
...
def click_mouse(x,y, p_wait=0.1):
win32api.SetCursorPos((x,y))
time.sleep(p_wait)
win32api.mouse_event(win32con.MOUSEEVENTF_LEFTDOWN,x,y,0,0)
win32api.mouse_event(win32con.MOUSEEVENTF_LEFTUP,x,y,0,0)
def move_mouse(x,y):
win32api.SetCursorPos((x,y))
time.sleep(0.5)
def activate():
global shell
shell=win32com.client.Dispatch("Wscript.Shell")
success = shell.AppActivate("App")
def resize():
global shell
???
答案 0 :(得分:0)
我试图解决类似的任务,发现来自win32gui
包的pywin32
可以完成这项工作。
这是一个小例子:
import win32gui
hwnd = win32gui.FindWindow(None, 'Window Title')
x0, y0, x1, y1 = win32gui.GetWindowRect(hwnd)
w = x1 - x0
h = y1 - y0
win32gui.MoveWindow(hwnd, x0, y0, w+100, h+100, True)