检测应用程序启动时是否保持轮班

发布于 2024-10-20 01:59:41 字数 285 浏览 3 评论 0原文

无论如何,当用户双击桌面上的应用程序图标来启动应用程序时,我是否可以查明用户是否一直按住 Shift(CTRL 或任何其他键)?

我有一个 WPF 应用程序,我希望能够检测用户在启动应用程序(通过双击)时是否按住了任何特殊键,以便​​在按下该键时我可以更改一些设置。

我尝试过:

private void Application_Startup(object sender, StartupEventArgs e)
{
}

但找不到任何方法来检测按键按下。

Is there anyway that I can find out if user has been holding Shift (CTRL or any other key) when she/he double click on application icon from desktop to start the application?

I have a WPF application where I want to be able to detect if the user has been holding any special key when he/she started the application (by double clicking) so I can change some settings if the key was pressed.

I tried :

private void Application_Startup(object sender, StartupEventArgs e)
{
}

but couldn't find any way to detect the key down .

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

七色彩虹 2024-10-27 01:59:41

在您的应用程序启动事件中写入以下代码:

// Instead of the MessageBox you could write your code here
if ((Keyboard.Modifiers & ModifierKeys.Shift) > 0)
{
    MessageBox.Show("Shift Pressed");
}

Write this code in your application start-up event:

// Instead of the MessageBox you could write your code here
if ((Keyboard.Modifiers & ModifierKeys.Shift) > 0)
{
    MessageBox.Show("Shift Pressed");
}
冬天的雪花 2024-10-27 01:59:41

我认为你应该看看这个问题: Keyboard modifiers during applicationstartup 这可能是什么你正在寻找。

希望有帮助。

I think you should look at this question: Keyboard modifiers during application startup This is probably what you're looking for.

Hope it helps.

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