web-dev-qa-db-fra.com

Lier le texte de RichTextBox de Xaml

Comment lier le texte de RichTextArea à partir de xaml

19
user281947

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

3
Arsen Mkrtchyan

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>
25
m1m1k

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);

        }
    }
}
4
e-rock

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>
2
Kevin Tan
0
Todd Main

Cela ne peut pas être fait, vous devez le mettre à jour manuellement. Le document n'est pas un DependencyProperty.

0
Paul Betts