リスト ボックスが 1 つあり、このリスト ボックスにはイメージ コントロールが含まれています。
リストボックス項目のクリックイベントで実行時の画像パスを変更したい。
イメージ コントロール パスを変更するにはどうすればよいですか?
私のコードは次のようなものです:
<ListBox x:Name="TransactionList" Width="450" Height="450" Margin="0,0,0,0">
<ListBox.ItemTemplate >
<DataTemplate>
<StackPanel Orientation="Horizontal" Width="450" Height="auto" Margin="0,0,10,0" >
<StackPanel Orientation="Horizontal" Width="300" Height="auto" Margin="0,0,1,10">
<TextBlock Height="35" Width="250" Margin="10,0,0,90" Text="{Binding SONGNAME}" FontSize="22" Foreground="Red" Name="tbSubCategories" />
<TextBlock Height="25" Margin="-250,10,180,30" Text="SingBy:" FontSize="18" Foreground="Gray" Name="tbsingby" />
<TextBlock Height="auto" TextWrapping="Wrap" Width="210" Margin="-180,50,0,70" Text="{Binding SINGBY}" FontSize="18" Foreground="Gray" Name="tbSingBy" />
<TextBlock Height="25" Margin="-280,60,200,0" Text="MusicBy:" FontSize="18" Foreground="Gray" Name="tbMusicby" />
<TextBlock Height="auto" TextWrapping="Wrap" Width="200" Margin="-205,100,0,30" Text="{Binding MUSICBY}" FontSize="18" Foreground="Gray" Name="tbMusicBy" />
</StackPanel>
<StackPanel Orientation="Vertical" Height="auto" Width="auto" Margin="0,50,0,35">
<Image Name="imgsubcatagorie" Width="40" Height="40" VerticalAlignment="Center" FlowDirection="LeftToRight" Source="/VodafoneAugmentedReality;component/Images/play1.png" />
</StackPanel>
</StackPanel>
</DataTemplate>
</ListBox.ItemTemplate>
</ListBox>
リスト ボックスの項目をクリックしたときに、imgsubcatagories のイメージ コントロール パスを変更したいと考えています。助けて