Richtextbox wpf binding - Stack Overflow most recent 30 from stackoverflow.com2009-11-30T11:43:48Zhttp://stackoverflow.com/feeds/question/343468http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/343468/richtextbox-wpf-binding3Richtextbox wpf bindingAlex Maker2008-12-05T10:48:02Z2008-12-05T21:45:34Z
<p>To do DataBinding of the Document in a <strong>WPF RichtextBox</strong>, I saw 2 Solutions so far, which are to derive from the RichtextBox and add a DependencyProperty, and also the solution with a "proxy".
Neither the first or the second are satisfactory. Does somebody know another solution, or instead, a commercial RTF control which is capable of <strong>DataBinding</strong>? The normal Textbox ist not an alternative, since we need text formating.</p>
<p>Any idea?</p>
http://stackoverflow.com/questions/343468/richtextbox-wpf-binding/343888#3438881Answer by Arcturus for Richtextbox wpf bindingArcturus2008-12-05T13:50:28Z2008-12-05T13:50:28Z<p>Create a UserControl which has a RichTextBox.. Now add the following dependency property:</p>
<pre><code> public FlowDocument Document
{
get { return (FlowDocument)GetValue(DocumentProperty); }
set { SetValue(DocumentProperty, value); }
}
public static readonly DependencyProperty DocumentProperty =
DependencyProperty.Register("Document", typeof(FlowDocument), typeof(RichTextBoxControl), new PropertyMetadata(OnDocumentChanged));
private static void OnDocumentChanged(DependencyObject d, DependencyPropertyChangedEventArgs e)
{
RichTextBoxControl control = (RichTextBoxControl) d;
if (e.NewValue == null)
control.RTB.Document = new FlowDocument(); //Document is not amused by null :)
control.RTB.Document = document;
}
</code></pre>
<p>This solution is probably that "proxy" solution you saw somewhere.. However.. RichTextBox simply does not have Document as DependencyProperty... So you have to do this in another way...</p>
<p>HTH</p>
http://stackoverflow.com/questions/343468/richtextbox-wpf-binding/345275#3452752Answer by siz for Richtextbox wpf bindingsiz2008-12-05T21:45:34Z2008-12-05T21:45:34Z<p>I can give you an ok solution and you can go with it, but before I do I'm going to try to explain why Document is <em>not</em> a DependencyProperty to begin with. </p>
<p>During the lifetime of a RichTextBox control, the Document property generally doesn't change. The RichTextBox is initialized with a FlowDocument. That document is displayed, can be edited and mangled in many ways, but the underlying value of the Document property remains that one instance of the FlowDocument. Therefore, there is really no reason it should be a Dependency Property, ie, Bindable. If you have multiple locations that reference
this FlowDocument, you only need the reference once. Since it is the same instance everywhere, the changes will be accessible to everyone.</p>
<p>I don't think FlowDocument supports document change notifications, though I am not sure.</p>
<p>That being said, here's a solution. Before you start, since RichTextBox doesn't implement INotifyPropertyChanged and Document is not a dependency property, we have no notifications when the RichTextBox's Document property changes, so the binding can only be OneWay.</p>
<p>Create a class that will provide the FlowDocument. Binding requires the existence of a Dependency Property, so this class inherits from DependencyObject.</p>
<pre><code>class HasDocument : DependencyObject
{
public static readonly DependencyProperty DocumentProperty =
DependencyProperty.Register("Document",
typeof(FlowDocument),
typeof(HasDocument),
new PropertyMetadata(new PropertyChangedCallback(DocumentChanged)));
private static void DocumentChanged(DependencyObject obj, DependencyPropertyChangedEventArgs e)
{
Debug.WriteLine("Document has changed");
}
public FlowDocument Document
{
get { return GetValue(DocumentProperty) as FlowDocument; }
set { SetValue(DocumentProperty, value); }
}
}
</code></pre>
<p>Create a Window with a rich text box in XAML.</p>
<pre><code><Window x:Class="samples.Window1"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="Flow Document Binding" Height="300" Width="300"
>
<Grid>
<RichTextBox Name="richTextBox" />
</Grid>
</Window>
</code></pre>
<p>Give the Window a field of type HasDocument.</p>
<pre><code>HasDocument hasDocument;
</code></pre>
<p>Window constructor should create the binding.</p>
<pre><code>hasDocument = new HasDocument();
InitializeComponent();
Binding b = new Binding("Document");
b.Source = richTextBox;
b.Mode = BindingMode.OneWay;
BindingOperations.SetBinding(hasDocument, HasDocument.DocumentProperty, b);
</code></pre>
<p>If you want to be able to declare the binding in XAML, you would have to make your HasDocument class derive from FrameworkElement so that it can be inserted into the logical tree.</p>
<p>Now, if you were to change the Document property on HasDocument, the rich text box's Document will also change.</p>
<pre><code>FlowDocument d = new FlowDocument();
Paragraph g = new Paragraph();
Run a = new Run();
a.Text = "I showed this using a binding";
g.Inlines.Add(a);
d.Blocks.Add(g);
hasDocument.Document = d;
</code></pre>