CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2
  1. #1
    Join Date
    May 2009
    Posts
    9

    Number updown control in my WPF

    Hi,

    I want to use Number updown control in my WPF application. BUt I didn't found any such control in the toolbox control. Please tell me how can i implement this control and its functionality in my application

    If any one have idea on this please reply me.


    Thanks in advance.

  2. #2
    Join Date
    Jan 2009
    Posts
    36

    Re: Number updown control in my WPF

    NumericUpDown Custom Control in an External Library Sample

    Some more ideas:
    Create a user control that is composed of a TextBox and two buttons. You'll have to do some extra work to get just numeric data from the user. See this StackOverflow thread for some ideas on this.

    Also check out the Silverlight Toolkit as it has a NumericUpDown control (use it as an example). You may be able to port over the needed code without too much work.

    Or just use a commercial 3rd party solution.
    Last edited by gurge60; June 3rd, 2009 at 03:05 PM. Reason: more info

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured