Hello,
In a Multiline WinTextEditor CTRL+A shortcut doesn't work.
Thanks for your support.
Sincerily,
Mauro
Hello Mauro,
You could do something like the following in your sample and Ctrl+A will work as expected:
private void ultraTextEditor1_KeyDown(object sender, KeyEventArgs e) { if (e.KeyCode == Keys.A && e.Modifiers == Keys.Control) { ultraTextEditor1.SelectAll(); } }
Please let me know if you have any other questions.
Hi Danko,
we are using lots of ultraTextEditors in our product and we have a unique shortcut handler so we cannot add this event handler for each case.
Could you please tell me if you will take care of this bug in next release ?
Thanks in advance
best regards