gpt4 book ai didi

c# - 备用网格行颜色?

转载 作者:太空狗 更新时间:2023-10-30 01:24:21 25 4
gpt4 key购买 nike

是否可以在 WPF System.Windows.Controls.Grid 中附加样式或定义属性以交替行(或列)的颜色?

我需要用户能够放置一个网格占位符(类似于 CrystalReports 的东西)...它可以为网格设置参数,但网格(在 View 中)将不包含任何数据。

最佳答案

我能想到的唯一方法是手动使用 Rectangle 声明在行内容之前或设置 Z 顺序以将其推到后面:

<Grid Background="White">
<Grid.RowDefinitions>
<RowDefinition Height="Auto"/>
<RowDefinition Height="Auto"/>
<RowDefinition Height="Auto"/>
<RowDefinition Height="Auto"/>
</Grid.RowDefinitions>
<Rectangle Grid.Row="0" Fill="AliceBlue" />
<TextBlock Grid.Row="0" Text="Row 1" HorizontalAlignment="Center"/>
<Rectangle Grid.Row="1" Fill="AntiqueWhite" />
<TextBlock Grid.Row="1" Text="Row 2" HorizontalAlignment="Center"/>
<Rectangle Grid.Row="2" Fill="AliceBlue" />
<TextBlock Grid.Row="2" Text="Row 3" HorizontalAlignment="Center"/>
<Rectangle Grid.Row="3" Fill="AntiqueWhite" />
<TextBlock Grid.Row="3" Text="Row 4" HorizontalAlignment="Center"/>
</Grid>

您可以使用绑定(bind)将行号传递给转换器以返回正确的颜色,而不是像我这里那样进行硬编码。

关于c# - 备用网格行颜色?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9632332/

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