我的 XAML 的摘录:
<ListBox x:Name="list" Margin="0,0,0,0" ItemsSource="{Binding Items}">
<ListBox.ItemTemplate>
<DataTemplate>
<StackPanel Orientation="Horizontal" Background="LightGray" Margin="0,5,0,0" >
<Image Name="like" Source="/Images/Like1.png" Tap="like_Tap"/>
<Image Name="unlike" Visibility="Collapsed" Source="/Images/UNLike1.png" Tap="unlike_Tap"/>
<Image Name="comment" Source="/Images/Comment1.png" Margin="30,0,0,0"/>
</StackPanel>
</DataTemplate>
</ListBox.ItemTemplate>
</ListBox>
现在这是我的问题
在我的 C# 代码中:
private void like_Tap(object sender, System.Windows.Input.GestureEventArgs e)
{
// Here I'm unable to change the visibility of either image. How do I do this?
}
我也希望这种行为传播到不同的按钮。
我该怎么做呢?谢谢!