gpt4 book ai didi

WPF DataGridCell BorderThickness=0 不起作用

转载 作者:行者123 更新时间:2023-12-04 02:21:51 26 4
gpt4 key购买 nike

DataGridColumnHeader.BorderThickness=0 对我有用,但不适用于 DataGridRow 或 DataGridCell,有什么想法吗?

<DataGrid x:Name="dg">
<DataGrid.Resources>
<Style TargetType="DataGrid">
<Setter Property="Background" Value="Transparent" />
<Setter Property="BorderThickness" Value="0" />
</Style>
<Style TargetType="DataGridColumnHeader">
<Setter Property="Background" Value="Transparent" />
<Setter Property="BorderBrush" Value="Black" />
<Setter Property="BorderThickness" Value="0 0 0 1" />
</Style>
</DataGrid.Resources>
</DataGrid>

结果:

enter image description here

最佳答案

这可以通过设置 GridLinesVisibility 来实现属性(property)到None .

<DataGrid x:Name="dg" DataGrid.GridLinesVisibility="None">
...

您可以使用以下代码段来了解 DataGrid 的哪一部分受 BorderThickness 的影响设置 - 有 3 种边框样式,每种样式都有不同的颜色。
<DataGrid x:Name="dg" >
<DataGrid.Resources>
<Style TargetType="DataGridCell">
<Setter Property="BorderThickness" Value="1" />
<Setter Property="BorderBrush" Value="Red" />
</Style>
<Style TargetType="DataGrid">
<Setter Property="Background" Value="Transparent" />
<Setter Property="BorderThickness" Value="1" />
<Setter Property="BorderBrush" Value="Green" />
</Style>
<Style TargetType="DataGridColumnHeader">
<Setter Property="Background" Value="Transparent" />
<Setter Property="BorderBrush" Value="Black" />
<Setter Property="BorderThickness" Value="0 0 0 1" />
</Style>
</DataGrid.Resources>
</DataGrid>

关于WPF DataGridCell BorderThickness=0 不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28161986/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com