I need to get numeric input from user in a WPF application runs on a touch screen device. The idea is to have a numeric keypad pops up when the TextBox
is focused.
I am using NavigationWindow
, and actually have already built a numeric keypad as a Page
. However, I don't want to navigate user to a new Page()
, because it would be nice to stay on the current page with its data.
Anyidea for the "pop up" numeric keypad in a NavigationWindow WPF app? Thanks!