This question is locked. New answers and comments are not allowed.
Hello
I use RadRichTextBox and HtmlDataProvider like this
When a user is typing, and presses "Enter" between the lines created by a large distance equal to one line. I looked in the "ViewModel" on the property HtmlContent, there is a symbol between the words </ p> (see example below)
How do I fix this? As there was no distance between the lines?
I use RadRichTextBox and HtmlDataProvider like this
<telhtml:HtmlDataProvider x:Name="htmlDataProvider" Html="{Binding HtmlContent, Mode=TwoWay}" RichTextBox="{Binding ElementName=HTMLRichTextBox}" /><telerik:RadRichTextBox x:Name="HTMLRichTextBox" IsImageMiniToolBarEnabled="True" IsSelectionMiniToolBarEnabled="False" IsSpellCheckingEnabled="False" ScrollViewer.HorizontalScrollBarVisibility="Auto" ScrollViewer.VerticalScrollBarVisibility="Auto" />When a user is typing, and presses "Enter" between the lines created by a large distance equal to one line. I looked in the "ViewModel" on the property HtmlContent, there is a symbol between the words </ p> (see example below)
<body> <p class="p_E2968D9D"> <span class="s_E2968D9D">Hello world!</span> </p> <p class="p_E2968D9D"> <span class="s_E2968D9D">The world is mine ...</span> </p></body>How do I fix this? As there was no distance between the lines?