WPF 中的无边框窗口

发布于 2024-10-21 15:24:24 字数 105 浏览 1 评论 0原文

我想要无边框窗口,类似于我所附的图像;我该怎么做?

谢谢 海洋在此处输入图像描述

I want to have Borderless window similar to image I have attached; how can I do this ?

Thanks
Oceanenter image description here

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

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

发布评论

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

评论(3

夜未央樱花落 2024-10-28 15:24:24

您可以通过使窗口透明并将 windowStyle 设置为 None 来摆脱默认镶边,并且需要提供样式按钮而不是右上角的常规按钮

<Window  WindowStyle="None" AllowsTransparency="True" Background="Transparent"

You can get rid of the default chrome by making the window transparent and windowStyle to None, and need to provide styled buttons instead of the regular buttons on the top-right

<Window  WindowStyle="None" AllowsTransparency="True" Background="Transparent"
时光瘦了 2024-10-28 15:24:24

如果您想避免最大化时窗口覆盖任务栏等问题,请使用 Microsoft WPF Shell 集成库

If you want to avoid issues like windows covering the taskbar when maximized, etc. use the Microsoft WPF Shell Integration Library

维持三分热 2024-10-28 15:24:24

我还有一些我之前写的代码,我认为涵盖了所有基本的窗口问题,从对齐到取消对齐、在适当的监视器上最大化、不覆盖任务栏等。看一下在它。

WPF 无边框窗口问题:Aero Snap &最大化

I also have some code that I wrote a little bit ago which I THINK covers all the basic windowing problems, from snapping, to unsnapping, maximizing on proper monitor, not covering task bar, etc. Take a look at it.

WPF Borderless Window issues: Aero Snap & Maximizing

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