C#C
C#2y ago
Kagano

✅ Avalonia UI button doesn't color by hover!

alls works great, but i doesnt change the color by Button:pointerover i have no plan why,

 <UserControl.Styles>
  <Style Selector="Button:pointerover">

      <Setter Property="Width" Value="300"></Setter>
      <Setter Property="Background" Value="Red"></Setter>
  </Style>
  <Style Selector="Button">

      <Setter Property="Background" Value="Green"></Setter>
  </Style>


<Button Content="Test"></Button>
 </UserControl.Styles>
Was this page helpful?