实现像 EA Origin 中一样的 WPF 覆盖

发布于 2025-01-02 15:09:33 字数 198 浏览 1 评论 0原文

如何使用 C# 和 WPF 实现类似于您在下面链接的图片中看到的叠加层?

EA 起源叠加示例

提前致谢

How can I achieve an overlay, similar to the one you can see in the picture linked below, using C# and WPF?

EA Origin overlay example

Thanks in advance

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

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

发布评论

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

评论(2

千纸鹤带着心事 2025-01-09 15:09:33

如果要将窗口设置为透明,只需执行以下操作之一:Window.Background =“Transparent”或Opacity =“0”。至于如何弹出,要么自己处理鼠标输入,要么将其设置为弹出窗口

If you want to set a window to transparent just do either of the following: Window.Background="Transparent", or Opacity="0". As far as how it pops up, either handle mouse enter yourself or set it up as a popup

飘落散花 2025-01-09 15:09:33

尝试查看 Popup 类。您的另一个选择是创建一个自定义用户控件


阅读您的评论后,您可能想看看这个 SO 答案,它讨论了使用 CombinedGeometry 用于创建您正在寻找的内容。

Try looking at the Popup Class. Your other option would be to create a custom UserControl.


After reading your comment you may want to look at this SO answer it discusses using CombinedGeometry's to create something like you are looking for.

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