最大化/最小化外部应用程序
我已将 Skype 配置为在 Windows 启动时最小化启动。
现在,我需要通过全屏应用程序按钮中的一个按钮将 Skype 置于前面。我得到了这段代码:
For Each p As Process In Process.GetProcessesByName("skype")
ShowWindow(p.MainWindowHandle, SHOW_WINDOW.SW_NORMAL)
Next p
它可以工作,但是当我单击按钮时,我的应用程序被最小化,我需要它保持原始状态。
有什么帮助吗?
提前致谢
I have got Skype configured to launch minimized on windows starts.
Now I need to bring Skype to front from a button from my full screen application button. I have got this code:
For Each p As Process In Process.GetProcessesByName("skype")
ShowWindow(p.MainWindowHandle, SHOW_WINDOW.SW_NORMAL)
Next p
It works but, when I clicked the button my application is minimized and I need it to remain in this original state.
Any help?
thanks in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
希望这有帮助吗? http://social.msdn.microsoft.com/Forums/en-US/csharpgeneral/thread/9bde4870-1599-4958-9ab4-902fa98ba53a/
Hope this helps? http://social.msdn.microsoft.com/Forums/en-US/csharpgeneral/thread/9bde4870-1599-4958-9ab4-902fa98ba53a/