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;
}