Like described, cannot select all text if the editor in Multiline mode. The version we use - WinForms 11.1
As a fast workaround i would implement KeyDown event handler. Any other suggestion?
Hello vilinski,
I believe that this topic has already been discussed in the following forum threads:
http://blogs.infragistics.com/forums/t/53022.aspx and
http://blogs.infragistics.com/forums/t/56179.aspx.
You could also take a look at the following article: http://devcenter.infragistics.com/Support/KnowledgeBaseArticle.aspx?ArticleID=8273.
Please do not hesitate to ask if something comes up.
Thank you for fast answer!
The KeyDown handler in an overridden user control works for me, and it is enough for now.
private void IwUltraTextEditor_KeyDown(object sender, KeyEventArgs e) { if (Multiline && (e.KeyCode == Keys.A && e.Modifiers == Keys.Control)) SelectAll(); }
Privet!