How to minimize one application using c# or python?
How can I minimize Microsoft Speech Recognition:
(source: microso开发者_JS百科ft.com)using C# or python?
For C#:
Using System.Diagnostics.Process
you can select the process when it's running. From there you can get the MainWindow Handle at .MainWindowHandle
and then call the windows API to minimize the application.
Unfortunately I do not know the specifics for that call, you'd have to google it.
精彩评论