Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
355
In a WinTextEditor Multiline CTRL+A shortcut doesn't work
posted

Hello,

In a Multiline WinTextEditor CTRL+A shortcut doesn't work.

Thanks for your support.

Sincerily,

Mauro

Parents
No Data
Reply
  • 20872
    Offline posted

    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.

Children