Hide selection of richedit c#

-->

private void richTextBox1_SelectionChanged(object sender, EventArgs e)
        {
            //MessageBox.Show("Selected");

             richTextBox1.SelectionLength = 0;
        }


Comments