BuZz
BuZz

Reputation: 17465

I have several textboxes, when user inputs TAB or SHIFT+TAB, I'd like him to be able to navigate these

In a short XAML, I have several textboxes. At the moment, when user inputs TAB or SHIFT+TAB, a \t gets added in the textbox. I would like this to not happen, and rather let him navigate through the textboxes using these keys.

Is this possible in pure XAML ?

Upvotes: 0

Views: 47

Answers (1)

nemesv
nemesv

Reputation: 139758

Use the AcceptsTab property

<TextBox AcceptsTab="false" />

Upvotes: 3

Related Questions