0
votes
1answer
43 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
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 …
