1 Star 0 Fork 20

一码哥/PythonUIAutomation4Windows

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
HideConsoleWindow.py 405 Bytes
一键复制 编辑 原始数据 按行查看 历史
yinkaisheng 提交于 2016-01-04 11:02 . add GetConsoleWindow
#!python3
# -*- coding:utf-8 -*-
import time
import automation
def main():
consoleWindow = automation.GetConsoleWindow()
print(consoleWindow)
print('\nconsole window will be hidden in 3 seconds')
time.sleep(3)
consoleWindow.Hide()
time.sleep(2)
print('\nconsole window shows again')
consoleWindow.Show()
if __name__ == '__main__':
main()
input('press any key\n')
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/MaxGalaxy/PythonUIAutomation4Windows.git
git@gitee.com:MaxGalaxy/PythonUIAutomation4Windows.git
MaxGalaxy
PythonUIAutomation4Windows
PythonUIAutomation4Windows
master

搜索帮助