Hello,
I am using XamNumericEditor in my application and at time when i want to disable it, it still shows active(White in color), unlike a normal TextBox. Although functionality is disabled but client gets confused like its still active.
Is there a way to disable + grey out it? Other than setting color property please.
Thanks in advance!
Which version of WPF product you are using(it's like 12.2.1000 for example).
This issue is resolved at latest Service Releases.
You can workaround this behaviour simply by adding Style trigger like:
<Style TargetType="{x:Type ig:XamNumericEditor}" > <Style.Triggers> <Trigger Property="IsEnabled" Value="False"> <Setter Property="Background" Value="Gray"></Setter> </Trigger> </Style.Triggers> </Style>
Regards,
Anastas
Can you please specify clearly which version supports the issue we resolved? Can you mention the URL where I can find that?
Thanks and Best Regards.