Hello
I have following code:
All I want is to display text, but I have following issues:
1. I cannot set font size and familly. It is very big on the beggining. Even if I set font size for richtextbox it is simple not working.
2. I have context menu enabled but no context menu is displayed. This is for read only purposes only so I would simply have copy context menu.
I have following code:
<
telerik:TxtDataProvider
Name
=
"txtProvider"
RichTextBox
=
"{Binding ElementName=rtbLog}"
Text
=
"{Binding Path=Log, Mode=OneWay}"
/>
<
telerik:RadRichTextBox
Grid.Row
=
"1"
Grid.ColumnSpan
=
"3"
HorizontalAlignment
=
"Left"
IsContextMenuEnabled
=
"True"
IsReadOnly
=
"True"
Margin
=
"5,3,0,0"
IsSelectionMiniToolBarEnabled
=
"False"
IsSpellCheckingEnabled
=
"False"
Name
=
"rtbLog"
VerticalAlignment
=
"Top"
/>
1. I cannot set font size and familly. It is very big on the beggining. Even if I set font size for richtextbox it is simple not working.
2. I have context menu enabled but no context menu is displayed. This is for read only purposes only so I would simply have copy context menu.