updown

Where is the WPF Numeric UpDown control?

Getting into the first serious WPF project. It seems like there are a lot of basic controls flat out missing. Specifically, I am looking for the Numeric UpDown control. Was there an out of band release that I missed? Really don't feel like writing my own control. I do not want to use the WindowsFormHost and plop a WinForm ctl on i...

Maintain UpDown-Associate connection while recreating the associate

I have an TUpDown control whose Associate is set to an instance of a TEdit subclass. The edit class calls RecreateWnd in its overriden DoEnter method. Unfortunately this kills the buddy connection at the API level which leads to strange behavior e.g. when clicking on the updown arrows. My problem is that the edit instance doesn't know t...

Added functionality for edit control with up-down buddy control

I have an edit control class and a up-down control class, which derive from CEdit and CSpinButtonCtrl respectively. The up-down control has the UDS_ARROWKEYS style, and has the edit control set as buddy. This means that pressing the Up/Down arrow keys in the edit box is equivalent to clicking the Up/Down buttons. The buttons are even ani...