启动应用程序,然后在关闭应用程序后恢复
我有一个启动记事本的应用程序。我想要做的是最小化我的应用程序,然后启动 Notepad.exe。用户关闭记事本后,我希望我的应用程序自动最大化或恢复我的应用程序窗口。我怎样才能在 C# 中做到这一点?我正在研究挂钩 notepad.exe 进程并尝试检测记事本上的窗口关闭事件。不过,我似乎想得太多了。有没有一种简单的方法可以做到这一点?
I have an application that launches Notepad. What I want to do is minimize my application, then launch Notepad.exe. After the user closes notepad, I'd like my application to automatically maximize or restore my application window. How can I do this in C#? I'm looking into hooking into the notepad.exe process and trying to detect window close event on notepad. I seem to be way over thinking this though. Is there a simple way to do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
只需使用 Exited 事件即可恢复窗口。像这样:
Just use the Exited event to restore your window. Like this: