DataGrid.AlternatingRowBackground 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取或设置在可选行上使用的背景画笔。
public:
property System::Windows::Media::Brush ^ AlternatingRowBackground { System::Windows::Media::Brush ^ get(); void set(System::Windows::Media::Brush ^ value); };
public System.Windows.Media.Brush AlternatingRowBackground { get; set; }
member this.AlternatingRowBackground : System.Windows.Media.Brush with get, set
Public Property AlternatingRowBackground As Brush
属性值
用于绘制每 n 行的背景的 Brush,其中 n 由 AlternationCount 属性定义。 已注册的默认值为 null
。 有关可以影响值的因素的更多信息,请参见 DependencyProperty。
示例
以下示例演示如何在 上 DataGrid设置交替行背景色。
<DataGrid x:Name="CustomerGrid" ItemsSource="{Binding}" AlternatingRowBackground="LightBlue" AlternationCount="2" />
下图显示了此代码在运行时的外观。
注解
AlternatingRowBackground、 RowBackground和 AlternationCount 属性共同决定每一行背景的外观。
如果 AlternationCount 小于 2,请将 AlternatingRowBackground 属性设置为 AlternationCount 2。