or
<telerik:GridViewDataColumn DataMemberBinding="{Binding Procedure}"> <telerik:GridViewDataColumn.CellTemplate> <DataTemplate> <StackPanel>
<telerik:HtmlDataProvider RichTextBox="{Binding ElementName=richTextBox}" Html="{Binding Procedure, Mode=TwoWay}" /> <telerik:RadRichTextBox x:Name="richTextBox" IsReadOnly="True" /> </StackPanel> </DataTemplate>
</telerik:GridViewDataColumn.CellTemplate></telerik:GridViewDataColumn><UserControl x:Class="WpfApplication27.UserControl1"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:telerik="http://schemas.telerik.com/2008/xaml/presentation"
xmlns:telHtml="clr-namespace:Telerik.Windows.Documents.FormatProviders.Html;assembly=Telerik.Windows.Documents.FormatProviders.Html"
mc:Ignorable="d"
d:DesignHeight="300" d:DesignWidth="300">
<UserControl.Resources>
<telHtml:HtmlDataProvider x:Key="htmlDataProvider" Html="{Binding ElementName=source, Path=Text, Mode=TwoWay}"
RichTextBox="{Binding ElementName=editor}"
/>
</UserControl.Resources>
<Grid>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="*"/>
<ColumnDefinition Width="*"/>
</Grid.ColumnDefinitions>
<telerik:RadRichTextBox x:Name="editor"/>
<TextBox AcceptsReturn="True" Name="source" Grid.Column="1"/>
</Grid>
</UserControl>