Tuesday, December 27, 2011

how to hide selection of richedit c#

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

             richTextBox1.SelectionLength = 0;
        }

0 Ads:

Post a Comment