我想更改WPF中DataGrid的RowHeader的背景。我做了一個靜態資源的風格,並希望在C#中添加樣式。以下是XAML/C#中的代碼。更改DataGridRowHeaderStyle(背景)?
XAML:
<Window x:Class="GUI.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="MainWindow" Height="350" Width="525">
<Window.Resources>
<Style x:Name="newRowHeader" TargetType="{x:Type DataGridRowHeader}">
<Setter Property="Background" Value="White" />
</Style>
</Window.Resources>
<Grid Name="MainGrid">
</Grid>
C#:
System.Windows.Controls.DataGrid dg = new System.Windows.Controls.DataGrid();
dg.RowHeaderStyle = (Style)FindResource("newRowHeader");
在C#dg.RowHeaderStyle的最後一行時出現錯誤....。錯誤:'在類型'GUI.MainWindow'上匹配指定的綁定約束的構造函數的調用拋出異常。
請幫忙