项目需求,ListBox选中切换其选中项的Image控件的图片,其它每项ListBoxItem的相应Image控件都设置为未选中图片.
解决方案适用于ComboBox等:
1.先看xaml文件:
<DataTemplate x:Name="BusTemplate" x:Key="LBDataTemplate">
<StackPanel>
<StackPanel Orientation="Horizontal" Margin="10">
<TextBlock Text="{Binding BusStr}" VerticalAlignment="Center" FontSize="30" Foreground="White" Width="360"/>
<Image x:Name="BusStausImage" Source="/Image/d1.png"/>
</StackPanel>
</StackPanel>
</DataTemplate>
<ListBox ItemsSource="{Binding}" x:Name="BusList" SelectionChanged="ListBox_SelectionChanged" ItemTemplate="{StaticResource LBDataTemplate}">