新的 Windows 8 Metro API 仍定义类 DataTemplateKey。
但是,我可以弄清楚如何使用它。
您是否有 XAML 中的示例来说明如何使用它?
新的 Windows 8 Metro API 仍定义类 DataTemplateKey。
但是,我可以弄清楚如何使用它。
您是否有 XAML 中的示例来说明如何使用它?
这是一个关于如何使用 DataTemplateKey 的示例。只是一个注释和提醒:x:Key 属性将优先于基于 DataType 生成的自动 DataTemplateKey
<Window.Resources>
<DataTemplate x:Key="ItemTemplate">
<TextBlock Text="{Binding}" Foreground="Red" />
</DataTemplate>
<DataTemplate x:Key="SelectedTemplate">
<TextBlock Text="{Binding}" Foreground="White" />
</DataTemplate>
<Style TargetType="{x:Type ListBoxItem}" x:Key="ContainerStyle">
<Setter Property="ContentTemplate" Value="{StaticResource ItemTemplate}" />
<Style.Triggers>
<Trigger Property="IsSelected" Value="True">
<Setter Property="ContentTemplate" Value="{StaticResource SelectedTemplate}" />
</Trigger>
</Style.Triggers>
</Style>
</Window.Resources>
<ListBox x:Name="lstItems" ItemContainerStyle="{StaticResource ContainerStyle}" />