Comment lier le texte de RichTextArea à partir de xaml
Il n'y a pas de moyen intégré pour le faire. Vous pouvez créer une propriété jointe Text et la lier comme discuté here
Ils ont la réponse plus facile ici:
Silverlight 4 RichTextBox Bind Data à l'aide de DataContext et fonctionne comme un charme.
<RichTextBox>
<Paragraph>
<Run Text="{Binding Path=LineFormatted}" />
</Paragraph>
</RichTextBox>
Voici la solution que j'ai trouvée. J'ai créé une classe RichTextViewer personnalisée et hérité de RichTextBox.
using System.Windows.Documents;
using System.Windows.Markup;
using System.Windows.Media;
namespace System.Windows.Controls
{
public class RichTextViewer : RichTextBox
{
public const string RichTextPropertyName = "RichText";
public static readonly DependencyProperty RichTextProperty =
DependencyProperty.Register(RichTextPropertyName,
typeof (string),
typeof (RichTextBox),
new PropertyMetadata(
new PropertyChangedCallback
(RichTextPropertyChanged)));
public RichTextViewer()
{
IsReadOnly = true;
Background = new SolidColorBrush {Opacity = 0};
BorderThickness = new Thickness(0);
}
public string RichText
{
get { return (string) GetValue(RichTextProperty); }
set { SetValue(RichTextProperty, value); }
}
private static void RichTextPropertyChanged(DependencyObject dependencyObject, DependencyPropertyChangedEventArgs dependencyPropertyChangedEventArgs)
{
((RichTextBox) dependencyObject).Blocks.Add(
XamlReader.Load((string) dependencyPropertyChangedEventArgs.NewValue) as Paragraph);
}
}
}
Vous pouvez utiliser la classe InlineUIContainer
si vous souhaitez lier un contrôle XAML dans un contrôle typé en ligne.
<RichTextBlock>
<Paragraph>
<InlineUIContainer>
<TextBlock Text="{Binding Name"} />
</InlineUIContainer>
</Paragraph>
</RichTextBlock>
Devrait pouvoir arriver dans SL4 RC. Voir Quel est le meilleur substitut à FlowDocument dans Silverlight?
Cela ne peut pas être fait, vous devez le mettre à jour manuellement. Le document n'est pas un DependencyProperty.