Hi,
I'm new to Infragistics and trying to use XamNumericEditor in a touch based UI where I want the Up Down SpinButtons to be bigger in size to make it better in usability.
Could you please suggest a way to do it?
Thanks,
Rituraj
Hello Rituraj, In order to manipulate the size of the spin buttons inside of the XamNumericEditor, an approach I can suggest you is to set the SpinButtonStyle of the editor by creating a Style that is targeting the RepeatButton class. This way you should be able to directly set it's Width or Height properties. For Example: <igEditors:XamNumericEditor.SpinButtonStyle> <Style TargetType="RepeatButton"> <Setter Property="Width" Value="50" /> </Style></igEditors:XamNumericEditor.SpinButtonStyle> I have also prepared a sample application where this behavior has been implemented. If you require any further assistance on this matter, please do not hesitate to ask.
Hello Tacho
Thanks for the quick response. This works. I'm now trying to change other properties of the buttons like replacing the Up/Down Arrow with '+' and '-' respectively and removing the underline in the text box during edit.
Any quick help would be appreciated.
Many thanks,