NavigationWindow, WinFormsHost and TextBoxes: backspace bug
WPF NavigationWindow is a very handy class that allows you to easily build Vista-like wizards, or any kind of window that resembles the browser-style navigation:
The NavigationWindow will automatically handle the Backspace, Back/Next keys and perform the appropriate navigation on the window pages.
If you're combining this class with the
WindowsFormsHost
to integrate WinForms controls, you may hit a very annoying
bug: if there are textboxes in your WinForm control, hitting
Backspace while editing the input on it will cause the
navigation window to navigate back, instead of deleting the
text on the TextBox. Yikes!
...