Search Results

0
votes
1answer
29 views

Inserting a tab into a WPF RichTextBox when AllowTab is set to false

I am trying to work out how to insert a tab character into a WPF RichTextBox when the AllowTab attribute is set to false. Is there a shortcut key that allows this? I would rather not have …
0
votes

WPF Validation Not Firing on First LostFocus of the TextBox

If you're not adverse to putting a bit of logic in your code behind, you can handle the actual LostFocus event with something like this: .xaml < …
0
votes

Inserting a tab into a WPF RichTextBox when AllowTab is set to false

Okay, the best I can come up with so far is intercepting the keydown event in the code behind: private void RichTextBox_KeyDown(object sender, KeyEventArgs e) { if (e.Key != Ke …
0
votes

WPF Toolkit Datagrid - Custom Tabbing

It is possible to turn off tabbing on the first two columns by using IsTabStop property on the individual DataGridCell items. Unfortunately this isn't as easy to access as some of the other WPF co …