我有一个“播放列表”,我想强调“正在播放”项目。
我试过这个
<!-- Row 5: Playlist -->
<ListBox x:Name="Tracks" MinHeight="400" Grid.Row="5" Margin="20">
<ListBox.ItemTemplate>
<DataTemplate>
<DockPanel Height="44" Width="436" Dock="Left">
<StackPanel Orientation="Vertical" Width="374" Name="Wrapper">
<Label Content="{Binding Path=title}" Name="Test" Foreground="CornflowerBlue" FontSize="14" Padding="0" />
<Label Content="{Binding Path=artist}" Foreground="DarkGray" FontSize="14" Padding="0" />
</StackPanel>
<Label Content="{Binding Path=DurationFormatted}" Foreground="DarkGray" Width="62" Padding="0" DockPanel.Dock="Right" HorizontalContentAlignment="Right" />
</DockPanel>
<DataTemplate.Triggers>
<DataTrigger Binding="{Binding Path=NowPlaying}" Value="True">
<Setter TargetName="Wrapper" Property="Background" Value="LightBlue"/>
<Setter TargetName="Test" Property="FontSize" Value="24"/>
<Setter Property="ListBoxItem.Foreground" Value="Red" />
</DataTrigger>
</DataTemplate.Triggers>
</DataTemplate>
</ListBox.ItemTemplate>
</ListBox>
这个
<ListBox.ItemTemplate>
same stuff without Triggers section
<ListBox.ItemContainerStyle>
<Style TargetType="{x:Type ListBoxItem}">
<Style.Triggers>
<DataTrigger Binding="{Binding Path=NowPlaying}" Value="True">
<Setter Property="ListBoxItem.Background" Value="Red" />
</DataTrigger>
</Style.Triggers>
</Style>
</ListBox.ItemContainerStyle>
NowPlaying只是音频模型的bool属性,我在调试器中检查当前对象确实得到了NowPlaying == true。但这两个触发器都不会改变项目外观。我做错了什么? 另外,至于我,我更喜欢命令式的风格。从代码隐藏中做到这一点是否容易?
P.S。我为强调项目设置了极值,仅用于测试:)
答案 0 :(得分:4)
记住你需要通过实现INotifyPropertyChanged接口来提升NowPlaying属性吗?没有它,绑定引擎无法看到属性已更改,因此无法对视图进行更新。
只是一个小小的补充:我肯定会赞成第一种方法,尽量避免使用datatrigger,事实上所有业务数据都尽可能地与样式数据绑定相关。 Style应该只包含视图设计,DataTemplates用于显示实际数据。如果你保持这种分离更容易重用一种风格。