有没有办法在 C# 中从一个应用程序切换到另一个应用程序?

发布于 2024-11-28 05:34:31 字数 232 浏览 0 评论 0原文

大家好,我有一个新问题需要所有程序员朋友解决。有没有一种方法可以让我按下按钮或打开计时器来触发一个事件,使我的应用程序从一个应用程序切换到另一个应用程序?例如,假设我想制作一个应用程序,当我按下按钮时,它将从当前应用程序切换到另一个正在运行的应用程序,例如记事本或游戏或其他应用程序。

如果有一种方法可以通过名称打开特定应用程序,那就太好了,谢谢。

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

染年凉城似染瑾 2024-12-05 05:34:31

使用两个WinAPI函数FindWindowSetFocus,就可以达到你想要的目的:

[DllImport("user32.dll")]
static extern IntPtr FindWindow(string lpClassName, string lpWindowName);

[DllImport("user32.dll")]
static extern IntPtr SetFocus(IntPtr hWnd);

例如,要将一个标题为“”的记事本窗口设置到前台,你可以使用下面的代码:

SetFocus(FindWindow("Notepad", "Untitled - Notepad"));

如果您不知道窗体的名称,那么您可以使用其他 WinAPI 函数枚举窗口。


或者,您可以使用 Microsoft.VisualBasic.dll 中的 Interaction.AppActivate() 方法,该方法位于命名空间 Microsoft.VisualBasic 中(如果您引用它) 。

只需简单调用 Interaction.AppActivate("window title")Interaction.AppActivate(iPID) 即可。

此方法的相应文档可以在此处找到。

Using the two WinAPI functions FindWindow and SetFocus, you can achieve your desired goal:

[DllImport("user32.dll")]
static extern IntPtr FindWindow(string lpClassName, string lpWindowName);

[DllImport("user32.dll")]
static extern IntPtr SetFocus(IntPtr hWnd);

For example, to set a notepad window with the title "" to the foreground, you can use the following code:

SetFocus(FindWindow("Notepad", "Untitled - Notepad"));

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 from Microsoft.VisualBasic.dll, found in namespace Microsoft.VisualBasic if you reference it.

Just simple call Interaction.AppActivate("window title") or Interaction.AppActivate(iPID).

The appropriate documentation for this method can be found here.

黎夕旧梦 2024-12-05 05:34:31

您可以使用 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)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文