Is it possible to re-program the tab key's functionality when using a TextBox in UWP apps? If you use the UWP version of OneNote, you see that it is possible... Well I can't say for sure, since it is Microsoft themselves that wrote the app, so maybe they just gave themselves the ability to override it?
But my goal is simply to program the key when my TextBox or RichEditBox has focus. I would like to give users the ability to simply press the tab key and indent text or bullet points, instead of having to additionally hold down the control key. But as things stand, by default when you press the tab key the editor loses focus and the next UI element gets focus. Annoying. -_- But thanks.
KeyDownorPreviewKeyDownEvent for you to handle. - kurakura88