Unplanned
Last Updated: 30 Mar 2016 11:26 by ADMIN
ADMIN
Dimitar
Created on: 01 Jun 2015 11:40
Category: RichTextEditor
Type: Bug Report
0
FIX. RadRichTextEditor - the DocumentContentChanged event is fired when the control is associated with RichTextEditorRibbonBar
To reproduce:
- Associate the  ribbon with the RichtextEditor
- Subscribe to the DocumentContentChanged and start the application.
- The event is fired because the ribbon is making changes to the document.

Workaround:
void Form1_Shown(object sender, EventArgs e)
{
    ribbonBar1.AssociatedRichTextEditor = radRichTextEditor1;
}
0 comments