GuOrg / Gu.Wpf.NumericInput

MIT License
73 stars 20 forks source link

Styling numeric boxes on focus #146

Open vaclav-domin opened 6 months ago

vaclav-domin commented 6 months ago

How styling numeric boxec on got focus? style like this not working

<Style TargetType="numbers:IntBox">
         <Style.Triggers>
            <Trigger Property="IsFocused"
                      Value="True">
                  <Setter Property="Background"
                           Value="Yellow" />
                </Trigger>
</Style>