我的Datagrid是:
<data:DataGrid x:Name="dgSearchResults" Style="{StaticResource dgStyle}" Grid.Row="1" ColumnHeaderStyle="{StaticResource dgHeaderStyle}" >
我在App.xaml文件中定义了样式:
<Style x:Key="dgStyle" TargetType="data:DataGrid">
<Setter Property="Background" Value="White"/>
<Setter Property="RowBackground" Value="#FFF6F6F6"/>
<Setter Property="Foreground" Value="#FF3A3B3B"/>
<Setter Property="FontFamily" Value="Verdana"/>
<Setter Property="FontSize" Value="13.333"/>
</Style>
EXCEPTION - &gt; 无效的属性值数据:属性TargetType的DataGrid。 [行:61位置:43]
答案 0 :(得分:1)
您的App.xaml不包含以下命名空间别名: -
xmlns:data="clr-namespace:System.Windows.Controls;assembly=System.Windows.Controls.Data"