I have a xml code:
<Paragraph>Download it directly to the <Hyperlink NavigateUri="http://itunes.apple.com/fi/app/goalapp/id502461189?ls=1&mt=8">iTunes Store</Hyperlink> or <Hyperlink NavigateUri="https://market.android.com/details?id=com.strikersoft.meramal.se">Android Market</Hyperlink>. The application is launched for Swedish app store.</Paragraph>
richTextBox.Xaml = xml;
But in this case I have an error, so how correctly set xaml to RichTextBox in Windows Phone?
Update

Basic Usage or the RichTextBox based on the code posted:
Note: when creating URL’s, the URL must be encoded, i.e., when using ampersands (&) in a URL, they should be created as
&and theNavigateUrineeds theTargetName="_blank"attribute added to open in the browser.Edit
When setting the
XAMLproperty in code, the xml namespace needs to be included in the xml. Wrap the entire xml block (and be sure to encode the URL as noted above) in aSectionnode:In the code behind, make sure the XML is a string, i.e.,: