Data Binding in Silverlight and XamlParseException
Playing with data binding I had the System.Windows.Markup.XamlParseException whenever I ran my app.
It turns out the problem was putting a binding statement into a <Run … /> element.
Silverlight supports data binding only on FrameworkElements and the Run class contrary to the Textblock is not a descendant.