标签:窗口 span code note setw pre import color time
import win32con import win32gui import time while True: time.sleep(1) notepad = win32gui.FindWindow("Notepad","无标题 - 记事本") for size in range(0,1620): time.sleep(0.001) win32gui.SetWindowPos(notepad, win32con.HWND_TOPMOST, size, size*1080//1920, 300, 300, win32con.SWP_SHOWWINDOW) for size in range(1620,0,-1): time.sleep(0.001) win32gui.SetWindowPos(notepad, win32con.HWND_TOPMOST, size, size * 1080 // 1920, 300, 300, win32con.SWP_SHOWWINDOW)
标签:窗口 span code note setw pre import color time
原文地址:https://www.cnblogs.com/sea-stream/p/10804863.html