Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
60
NumericUpDown in a cell
posted

Is it possible to display a NumericUpDown control as a value editor within a grid's cell. Any illustrative code would be helpful.

 

Thanks

  • 138253
    Offline posted

    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.

  • 138253
    Offline posted

    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.