Is it possible to display a NumericUpDown control as a value editor within a grid's cell. Any illustrative code would be helpful.
Thanks
(Sorry, Silverlight question!)
Hello itdist,
I am just checking the progress of this issue and was wondering if you managed to achieve your goal or if you need any further assistance on the matter.
If the above suggestion helped you solve your issue please verify the thread as answered so other users may take better advantage of it.
Hello itdist, Thank you for your post. I have been looking through it and I suggest you add the following style for the xamNumericEditor which is the editor that is used with the numeric fields in your xamDataGrid. By setting the SpinButtonDisplayMode property to Always you will achieve your goal. <Style TargetType="{x:Type igEditors:XamNumericEditor}"> <Setter Property="SpinButtonDisplayMode" Value="Always"> </Setter> </Style> If you have any further questions on this matter do not hesitate to ask.