画像とボタンを含むリストボックスがあります。デフォルトでは、ボタンは非表示になっています。リストボックス内の項目にカーソルを合わせるたびにボタンを表示したいと考えています。私が使用している XAML は以下のとおりです。ありがとう
<Window.Resources>
<Style TargetType="{x:Type ListBox}">
<Setter Property="ItemTemplate">
<Setter.Value>
<DataTemplate>
<Border BorderBrush="Black" BorderThickness="1" Margin="6">
<StackPanel Orientation="Horizontal">
<Image Source="{Binding Path=FullPath}" Height="150" Width="150"/>
<Button x:Name="sideButton" Width="20" Visibility="Hidden"/>
</StackPanel>
</Border>
</DataTemplate>
</Setter.Value>
</Setter>
</Style>
</Window.Resources>