有没有办法在 C# 中从一个应用程序切换到另一个应用程序?
大家好,我有一个新问题需要所有程序员朋友解决。有没有一种方法可以让我按下按钮或打开计时器来触发一个事件,使我的应用程序从一个应用程序切换到另一个应用程序?例如,假设我想制作一个应用程序,当我按下按钮时,它将从当前应用程序切换到另一个正在运行的应用程序,例如记事本或游戏或其他应用程序。
如果有一种方法可以通过名称打开特定应用程序,那就太好了,谢谢。
PS:我已经知道如何编写计时器,因此如果您不想,则不必发布计时器。
Hi I have a new question for all fellow programmers to solve. Is there a way that I can press a button or have a timer on that will fire an event that will make my app switch from one app to another? for example lets say I want to make a app that when i press a button it will switch from the current app to another app that is running like notepad or a game or something.
If there is a way to open a specific app by its name that would be great to, thanks.
PS: I already know how to code a timer so you don't have to post one if you don't want to.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用两个WinAPI函数
FindWindow
和SetFocus
,就可以达到你想要的目的:例如,要将一个标题为“”的记事本窗口设置到前台,你可以使用下面的代码:
如果您不知道窗体的名称,那么您可以使用其他 WinAPI 函数枚举窗口。
或者,您可以使用
Microsoft.VisualBasic.dll
中的Interaction.AppActivate()
方法,该方法位于命名空间Microsoft.VisualBasic
中(如果您引用它) 。只需简单调用
Interaction.AppActivate("window title")
或Interaction.AppActivate(iPID)
即可。此方法的相应文档可以在此处找到。
Using the two WinAPI functions
FindWindow
andSetFocus
, you can achieve your desired goal:For example, to set a notepad window with the title "" to the foreground, you can use the following code:
If you don't know the form's name, then you can enumerate the windows using other WinAPI functions.
Alternatively, you can use the
Interaction.AppActivate()
method fromMicrosoft.VisualBasic.dll
, found in namespaceMicrosoft.VisualBasic
if you reference it.Just simple call
Interaction.AppActivate("window title")
orInteraction.AppActivate(iPID)
.The appropriate documentation for this method can be found here.
您可以使用 Pinvoke 调用 SetFocus 函数,该函数采用 WindowHandle 并将键盘焦点设置到该屏幕。
http://msdn.microsoft.com/en- us/library/ms646312(v=vs.85).aspx
http://www.pinvoke.net 了解有关如何使用 Pinvoke 的更多信息。
http://support.microsoft.com/kb/147659:一篇好文章,如果您不确定窗口标题是什么(如果你这样做,那么你可以获取所有窗口句柄,然后使用 GetWindowName() 获取窗口名称并检查这是否是你想要的,GetWindowName 还获取一个窗口句柄)
You can use Pinvoke to call the SetFocus function which takes a WindowHandle and sets the keyboard focus to that screen.
http://msdn.microsoft.com/en-us/library/ms646312(v=vs.85).aspx
http://www.pinvoke.net for more information on how to use Pinvoke.
http://support.microsoft.com/kb/147659 : A good article if you're unsure of what the window title is (if you do then you can just get all the window handles and then use GetWindowName() to get the window name and check if that's the one you want, GetWindowName also takes a window handle)