I have a radrichtextbox that always goes into readonly mode after printing. It seems like a bug to me, as this does not happen as long as I don’t print. I am printing in native mode using RadRichTextBox.Print. I even tried setting IsReadonly property to false and that does not work either.
Grid rootGrid = element as Grid;
var returnedElements = rootGrid.ChildrenOfType<RadRichTextBox>();
RadRichTextBox richTextBox = returnedElements.FirstOrDefault();
if (richTextBox != null)
{
richTextBox.Print("TestPrint", PrintMode.Native);
}
So the only way I could work around this issue was to force IsReadonly to false immediately after printing.