1. Can I set the gutter of the document.
2. I am trying to input Chinese and Japanese into the document, but the font is not correct and export the .docx file have no Asian font.
3. can I copy the content from word to richtextbox. if not, can I use this function in Out of Browser mode.
4. can I make a custom control to replace the stylesgallery like a combobox or RibbonDropDownButton.
5. large document , like 100 pages to display in richtextbox are very slow, have any idea to improve.
6.when I import the docx file to richtextbox ,the table and some style are changed.
7.how can I custom the minitoolbar, I want to change the font size combobox like blow.
<telerik:RadRibbonComboBox x:Name="fontSizeComboBox"
CanAutocompleteSelectItems="False"
CanKeyboardNavigationSelectItems="False"
CommandParameter="{Binding SelectedItem.Tag,
RelativeSource={RelativeSource Self}}"
IsEditable="True"
IsReadOnly="True"
IsTextSearchEnabled="False"
MaxDropDownHeight="400"
OpenDropDownOnFocus="True"
telerik:RadRichTextBoxRibbonUI.RichTextCommand="{Binding ChangeFontSizeCommand}"
>
<telerik:RadRibbonComboBoxItem Content="五号" Tag="14" />
<telerik:RadRibbonComboBoxItem Content="小四" Tag="16" />
<telerik:RadRibbonComboBoxItem Content="四号" Tag="18.67" />
<telerik:RadRibbonComboBoxItem Content="小三" Tag="20" />
<telerik:RadRibbonComboBoxItem Content="三号" Tag="21.33" />