WPF 中 WindowStyle=“None”的 Label 附近出现一条奇怪的鬼线

发布于 2024-10-11 08:40:22 字数 967 浏览 2 评论 0原文

这是代码:

<Window x:Class="WpfWindow.Window1"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
             xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
             xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" 
             xmlns:d="http://schemas.microsoft.com/expression/blend/2008" mc:Ignorable="d" Topmost="True" WindowStyle="None" ResizeMode="NoResize"
             d:DesignHeight="300" d:DesignWidth="300" SizeToContent="WidthAndHeight" WindowStartupLocation="CenterScreen">

        <Label Content="Test label" />
</Window>

它生成以下图像:

alt text

只要以下参数,它似乎就会不断重现set:

  • ResizeMode = "NoResize"
  • WindowStyle = "None"
  • SizeToContent = "WidthAndHeight"

我希望如果我为窗口设置边框颜色,它会消失,但是,即使我这样做,它也会保留在那里......

任何人都有想法我怎样才能让这条线消失?

谢谢!

Here is the code:

<Window x:Class="WpfWindow.Window1"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
             xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
             xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" 
             xmlns:d="http://schemas.microsoft.com/expression/blend/2008" mc:Ignorable="d" Topmost="True" WindowStyle="None" ResizeMode="NoResize"
             d:DesignHeight="300" d:DesignWidth="300" SizeToContent="WidthAndHeight" WindowStartupLocation="CenterScreen">

        <Label Content="Test label" />
</Window>

It produces the following image:

alt text

It seems to reproduce constantly with as long as the following parameters are set:

  • ResizeMode = "NoResize"
  • WindowStyle = "None"
  • SizeToContent = "WidthAndHeight"

I hoped it'd disappear if I set a border color for the window, however, it stays there even if I do that...

Anyone has an idea of how I can make this line disappear?

Thanks!

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

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

发布评论

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

评论(1

塔塔猫 2024-10-18 08:40:22

将 SnapsToDevicePixels="True" 添加到窗口属性。

我想你在这里看到的是窗户背景后面的一小片黑色。如果将背景颜色设置为透明,您可以看到完整的黑色。

Add SnapsToDevicePixels="True" to the window properties.

What I think you are seeing here is a sliver of the black behind the window background. You can see this black in full if you set the Background color to Transparent.

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