I have been setting the background color on this control however it always shows as white. Am I using the wrong property?
Regards,
Aaron
Hi Aaron,
here's what you need to do:
this.xamRichTextEditor1.Document.RootNode.Settings = new DocumentSettings(){Background = new ColorInfo(Colors.Green)};
Hope this helps,