如何在 WPF 中检测任务栏上的右键单击

发布于 2024-08-27 17:34:13 字数 244 浏览 10 评论 0原文

我有一个 C# 中的 WPF 应用程序,它以加载对话框开始。正如预期的那样,该应用程序的按钮会显示在 Windows 任务栏中。

我想检测可能对该按钮进行的​​右键单击。

最终,我希望禁用右键单击或只是让加载对话框重新获得焦点。我看到有些人使用自定义库和包(例如互操作)来实现某些 Win32 功能,但我个人希望避免这种情况。此外,这些库/包似乎特定于 Windows 窗体;我还没有看到 WPF 的任何内容。 WPF中任务栏右键无法操作吗?

I've got a WPF application in C# that starts off with a loading dialog. As expected, a button for the app shows up in the Windows taskbar.

I would like to detect right-clicks that might be done to that button.

Ultimately, I hope to disable the right-click or simply have the loading dialog regain focus. I've seen that some people use custom libraries and packages (interop, for example) to achieve some Win32 functionality, but I'd personally like to avoid this. Furthermore, these libraries/packages appear to be specific to Windows Forms; I've not seen anything for WPF. Is it impossible to manipulate the taskbar's right-click in WPF?

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

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

发布评论

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

评论(2

孤蝉 2024-09-03 17:34:13

你不能只在窗口上设置 ShowInTaskbar="False" 吗?

Can you not just set ShowInTaskbar="False" on the window?

你与清晨阳光 2024-09-03 17:34:13

您可以在窗口上设置 ShowInTaskbar="False",然后在加载完成后在代码隐藏中将其设置回 true。

You can set ShowInTaskbar="False" on the window, and then once you are done loading set it back to true in code-behind.

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