This question is locked. New answers and comments are not allowed.
One project always throws this:
if (! TelerikUtils.IsInDesignMode ()) Telerik.Windows.Documents.Utilities.Guard.ThrowExceptionIfNull<ITextBasedDocumentFormatProvider>(formatProvider, "formatProvider");And nothing I can do with it.
References to:
Telerik.Windows.Documents;
Telerik.Windows.Documents.FormatProviders.Xaml;
Why is this happening? A new test project works perfect with the same code:
<StackPanel> <TextBox x:Name="Source" /> <t:RadRichTextBox x:Name="PreviewBox" MinHeight="80" /> <t:XamlDataProvider RichTextBox="{Binding ElementName=PreviewBox}" Xaml="{Binding ElementName=Source, Path=Text, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}" /></StackPanel>