6
WPF에서 Button MouseOver의 배경을 어떻게 변경합니까?
이 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> 하지만 버튼 위에 마우스를 올리면 버튼의 배경이 기본 창 회색 배경으로 변경됩니다. 뭐가 문제 야? …