views:

674

answers:

2

How to Bind the text of RichTextArea from xaml

+1  A: 

There is no built in way to do that. You can create Text attached property and bind to it like discussed here

ArsenMkrt
The link provided is specific to WPF. The RichTextBox in Silverlight doesn't have a Document property on it.
Steve Wortham
A: 

This can't be done, you have to manually update it. Document is not a DependencyProperty.

Paul Betts