Hi,
I am using RadRichTextbox for one line input only. Basically, I want it to work as regular RadTextBox. I need use this control instead of regular RadTextBox for mail merge purposes. The text is half hidden. If I resize the window or click inside the textbox it normalizes. Is there a setting I need to set to fix this or is this a bug? Any workaround?
Here is my simple code. See attached image file to see how it looks.
I am using RadRichTextbox for one line input only. Basically, I want it to work as regular RadTextBox. I need use this control instead of regular RadTextBox for mail merge purposes. The text is half hidden. If I resize the window or click inside the textbox it normalizes. Is there a setting I need to set to fix this or is this a bug? Any workaround?
Here is my simple code. See attached image file to see how it looks.
<telerik:RadRichTextBox x:Name="radRichTextBox" HorizontalAlignment="Stretch" Height="26" ScrollViewer.VerticalScrollBarVisibility="Disabled" AcceptsReturn="False" AutoInsertHyperlinks="False" LayoutMode="FlowNoWrap" VerticalScrollBarVisibility="Disabled"> <telerik:RadDocument> <telerik:Section> <telerik:Paragraph> <telerik:Span Text="This is a test"/> </telerik:Paragraph> </telerik:Section> </telerik:RadDocument> </telerik:RadRichTextBox>