在wpf窗口顶部的空白

《在wpf窗口顶部的空白》

我创建了一个新的wpf窗口并设置了主Grid的背景,当我将WindowStyle设置为None时,我发现窗口顶部有一个空白区域.
如何删除空格?

<Window x:Class="XuanyiRetail.Window1"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    Title="Window1" Height="300" Width="300" WindowStyle="None">
<Grid Background="Bisque">

</Grid>

最佳答案 不仅在顶部而且在其他三个边缘上可见白色边框.

您的项目中必须有一个样式,它定义了类型网格的边距.

像Margin =“1,5,1,1”之类的东西

<Style TargetType="{x:Type Grid}">
   <Setter Property="Margin" Value="1,5,1,1"/>
</Style>

为了确保这是错误的来源,您可以在该窗口中定义没有边距的样式.

<Window.Resources>
  <Style x:Key="NoMarginGrid" TargetType="{x:Type Grid}">
    <Setter Property="Margin" Value="0"/>
  </Style>
</Window.Resources>
<Grid Background="Bisque" Style="{StaticResource NoMarginGrid}" >
</Grid>
点赞