gpt4 book ai didi

WPF 数据网格样式

转载 作者:行者123 更新时间:2023-12-04 14:38:46 29 4
gpt4 key购买 nike

我想设计 WPF 数据网格的样式,这似乎很容易。据我了解,我必须拥有如下代码:

<Style x:Key="DataGridColumnHeaderStyle" TargetType="{x:Type Custom:DataGridColumnHeader}"  >
<Setter Property="Background" Value="#88800080" />
<Setter Property="Foreground" Value="White" />
</Style>

但我的问题是..我应该把这段代码放在哪里,我如何让数据网格知道使用上面的样式?

问候,

最佳答案

将它放在 xaml 的资源中(本地或全局)。最简单的就是放到当前xaml文件的本地资源中:

<Page Name="SomeName"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
<Page.Resources>
<Style x:Key="DataGridColumnHeaderStyle" TargetType="{x:Type Custom:DataGridColumnHeader}" >
<Setter Property="Background" Value="#88800080" />
<Setter Property="Foreground" Value="White" />
</Style>
</Page.Resources>
<!-- The rest of the xaml -->
</Page>

关于WPF 数据网格样式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2275940/

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