1 Star 0 Fork 20

zhaoqil/PythonUIAutomation4Windows

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
notepadtop.py 597 Bytes
一键复制 编辑 原始数据 按行查看 历史
yinkaisheng 提交于 2016-02-19 17:59 . modified
#!python3
# -*- coding:utf-8 -*-
import sys
import subprocess
import automation
if __name__ == '__main__':
isTop = 1
print(sys.argv)
if len(sys.argv) == 2:
isTop = int(sys.argv[1])
note = automation.WindowControl(searchDepth = 1, ClassName = 'Notepad')
if note.Exists(0, 0):
note.SetTopmost(isTop)
else:
subprocess.Popen('notepad')
note.Refind()
note.SetTopmost(isTop)
edit = automation.EditControl(searchFromControl= note)
edit.Click()
automation.SendKeys('I\'m a topmost window!!!')
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/xxrl2018/PythonUIAutomation4Windows.git
git@gitee.com:xxrl2018/PythonUIAutomation4Windows.git
xxrl2018
PythonUIAutomation4Windows
PythonUIAutomation4Windows
master

搜索帮助