6
WPFでボタンマウスオーバーの背景をどのように変更しますか?
このXAMLを使用してページにボタンがあります。 <Button Content="Button" HorizontalAlignment="Left" VerticalAlignment="Bottom" Width="50" Height="50" HorizontalContentAlignment="Left" BorderBrush="{x:Null}" Foreground="{x:Null}" Margin="50,0,0,0"> <Button.Style> <Style TargetType="Button"> <Setter Property="Background" Value="Green"/> <Style.Triggers> <Trigger Property="IsMouseOver" Value="True"> <Setter Property="Background" Value="Red"/> </Trigger> </Style.Triggers> </Style> </Button.Style> </Button> しかし、ボタンの上にマウスを置くと、ボタンの背景がデフォルトのウィンドウの灰色の背景に変わります。どうしたの? これは、マウスオーバー前後のボタン画像です: 前: 後: