When importing an html file and the color of the text is marked as windowtext, the text is transparent.
Steps to reproduce. 1. Open the ManageStylesDialog dialog. 2. Hover the Normal style item. 3. Scroll the dialog using mouse wheel. - An UnhandledException in Silverlight will be throw
When the user opens a dialog in RadRichTextBox, after closing this dialog, the focus is lost.
When a hyperlink is copy/pasted from MS Word to RadRichTextBox, only the display name is pasted and the hyperlink is lost.
The textblocks in PageSetup dropdowns in PageLayout tab have black foreground, when Expression_Dark theme is applied. The foreground color should be white.
When entering header, the focus is moved to the footer. When entering footer, focus goes to the main document editor, comment editor (if comment is present), or footnotes/endnotes editor (if footnotes/endnotes are present). Sometimes the focus is moved to the Font combo box in the Ribbon UI. When inserting symbols in the header, some of them are inserted in the footer.
The exception can be observed when printing document containing images with unsupported formats, or images with empty source (RawData = "").
The calculation of the left and hanging indent is incorrect for paragraph in list when the left and hanging indents are with the same value.
The borders of a row spanned (merged) cell are not correctly imported if the borders are applied before the merge.
At this point the Ctrl + Insert shortcut doesn't work, while the Shift + Insert is pasting the text in the editor, but the pasted text is not visible until you start to type.
protected
override
void
ResetPooledElementProperties(
object
element)
{
if
(element
is
Path)
{
Path path = (Path)element;
path.Data =
null
;
path.Fill =
null
;
path.Dispatcher.BeginInvoke(()=>
ToolTipService.SetToolTip(path,
null
));
}
}
this
.radRichTextBox.HyperlinkToolTipFormatString =
string
.Empty;
When color is applied to table cell border through the Table Borders -> Cell Borders, the thickness of the border is set to 0. This makes the border invisible. Workaround: Change the border thickness manually in the dialog after the color is changed. Steps to reproduce: - Add table with one column - Open from context menu Table Borders dialog - Click on Cell Borders tab - Apply color -> blue - Press OK Expected: The table cell has blue borders applied. Actual: The table cell has no borders.
Italic bullet sign of bulleted paragraph (with last italic characters) is exported like an equal sign with a line through it. Workaround: Make all italic bullets non-italic. The following code achieves that: RadDocument document = this.radRichTextBox.Document; foreach (var paragraph in document.EnumerateChildrenOfType<Paragraph>()) { if (paragraph.ListId != Paragraph.ListIdProperty.DefaultValue) { DocumentList documentList = document.ListManager.GetDocumentListById(paragraph.ListId); int levelIndex = paragraph.ListLevel != Paragraph.ListLevelProperty.DefaultValue ? paragraph.ListLevel : 0; if (documentList.ActualStyle.Levels[levelIndex].NumberingFormat == ListNumberingFormat.Bullet) { documentList.ActualStyle.Levels[levelIndex].SpanProperties.FontStyle = FontStyles.Normal; } } } this.radRichTextBox.UpdateEditorLayout();