wpf-devexpress-dot-xpf-dot-richedit-dot-richeditcontrol-a6088f4c.md
Gets or sets the control’s content. This is a dependency property.
Namespace : DevExpress.Xpf.RichEdit
Assembly : DevExpress.Xpf.RichEdit.v25.2.dll
NuGet Package : DevExpress.Wpf.RichEdit
public RichEditDocumentContent Content { get; set; }
Public Property Content As RichEditDocumentContent
| Type | Description |
|---|---|
| RichEditDocumentContent |
A RichEditDocumentContent class instance used to obtain the control’s content in different formats.
|
Use the Content property to bind RichEditControl content to HTML, RTF or plain text data.
Note that RichEditControl.HtmlText, RichEditControl.RtfText or RichEditControl.Text properties are not dependency properties, so they cannot be used to bind text to the control. Use one of the following converter to bind data to the Content property:
You can also use the following properties to bind the control to a content data:
RichEditControl.DocumentSourceGets or sets a document supplier for RichEditControl. This is a dependency property.RichEditControl.DocxBytesGets or sets the control’s content as an array of bytes in Office Open XML (Docx) format.
The following code snippet binds standard TextControl to the RichEditControl using the ContentToPlainTextConverter class.
A BarManager component enables the hover menu.
View Example: How to implement a converter to bind RichEditControl to the text in different formats
<Window.Resources>
<dxre:ContentToPlainTextConverter x:Key="ContentPlainConverter" />
<dxre:RichEditUICommand x:Key="commands" />
</Window.Resources>
<Grid>
<Grid.ColumnDefinitions>
<ColumnDefinition />
<ColumnDefinition/>
</Grid.ColumnDefinitions>
<dxb:BarManager Name="barManager1" Grid.Column="0">
<dxre:RichEditControl x:Name="richEditControl1" Height="Auto" Width="Auto"
BarManager="{Binding ElementName=barManager1}" ActiveViewType="Simple" />
</dxb:BarManager>
<TextBox Text="{Binding ElementName=richEditControl1, Path=Content, Converter={StaticResource ContentPlainConverter}, Mode=OneWay}"
x:Name="textBox1" Grid.Column="1" Height="Auto" Width="Auto"/>
</Grid>
When binding multiple controls to the same data source, set the RichEditControl.UseDeferredDataBindingNotifications property to false to fire the binding-related events at the same time.
The following code snippet (auto-collected from DevExpress Examples) contains a reference to the Content property.
Note
The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.
</dxb:BarManager>
<TextBox Text="{Binding ElementName=richEditControl1, Path=Content, Converter={StaticResource ContentPlainConverter}, Mode=OneWay}"
x:Name="textBox1" Grid.Column="1" Height="Auto" Width="Auto"/>
See Also