Hi, I want to move my styles to a css class:
From:
<EnabledStyle BorderColor="#e0e0e0" BorderWidth="1" Width="48" Height="36px" HorizontalAlign="Center" />
To:
<EnabledStyle CssClass="my-class" />
.my-class {
border: 12px solid #e0e0e0;
width: 48px;
height: 36px;
text-align: center;
}
But that is not working, the NumericTextbox never gets styled ....
Please enlightenme what I have to do to make it work, thank you!
Tom