This question is locked. New answers and comments are not allowed.
Hi there,
Im using the RadRichTextBox and sometimes i need to use it for Read Only, but the key "DELETE" keep erasing the text after i set that property (IsReadOnly = true). I also tried to cancel the event doing this:
private void radRichTextBox1_KeyDown(object sender, KeyEventArgs e)
{
if (e.KeyCode == Keys.Delete) e.Handled = true;
}
But it steel erasing my text, how can i fix it?
Im using the RadRichTextBox and sometimes i need to use it for Read Only, but the key "DELETE" keep erasing the text after i set that property (IsReadOnly = true). I also tried to cancel the event doing this:
private void radRichTextBox1_KeyDown(object sender, KeyEventArgs e)
{
if (e.KeyCode == Keys.Delete) e.Handled = true;
}
But it steel erasing my text, how can i fix it?