Dorra Tayâa

Dorra Tayâa

  • NA
  • 3
  • 4.6k

change RadNumericUPDown background by style

Aug 7 2014 6:31 AM
hello i'm trying to add style which change radnumericupdown background when it got the focus but this doesn't work 
<Style TargetType="{x:Type telerik:RadNumericUpDown}" >
               
        <Style.Triggers>
            <Trigger Property="IsFocused" Value="true">
                <Setter Property="Background" Value="#FEFCD7" />
            </Trigger>
            <Trigger Property="IsFocused" Value="false">
                <Setter Property="Background" Value="White"/>
            </Trigger>
        </Style.Triggers>
    </Style>