CustomRichTextBox 删除线 TextDecoration
CustomRichTextBox StrikeThrough TextDecoration
我想为我的自定义添加一个 TextDecorations.Strikethrough
装饰按钮 RichTextBox
我正在使用下面的代码添加和删除 TextDecoration
事情是我得到了一个 InvalidCastException: Unable to cast object of type 'MS.Internal.NamedObject' to type 'System.Windows.TextDecorationCollection'.
当我选择的范围大于被划线的范围并单击 "StrikeThrough" 按钮时。
我的代码
private void StrikeOutButton_Click(object sender, RoutedEventArgs e)
{
TextRange range = new TextRange(this.MyRichTextBox.Selection.Start,
this.MyRichTextBox.Selection.End);
TextDecorationCollection tdc =
(TextDecorationCollection)this.MyRichTextBox.
Selection.GetPropertyValue(Inline.TextDecorationsProperty);
/*
if (tdc == null || !tdc.Equals(TextDecorations.Strikethrough))
{
tdc = TextDecorations.Strikethrough;
}
else
{
tdc = new TextDecorationCollection();
}
* */
if (tdc == null || !tdc.Contains(TextDecorations.Strikethrough[0]))
{
tdc = TextDecorations.Strikethrough;
}
else
{
tdc = new TextDecorationCollection();
}
range.ApplyPropertyValue(Inline.TextDecorationsProperty, tdc);
}
注释掉的代码也不起作用。
我打算 post ExceptionDetails,但我认为它非常清楚。
有人可以提供解决方法吗?
问题是您将得到 DependencyProperty.UnsetValue
如果您的完整文本没有用删除线装饰。
因此您可以检查 DependencyProperty.UnsetValue
并在这种情况下应用删除线。
我做了一个简短的测试,这个解决方案对我有用:
private void StrikeOutButton_Click(object sender, RoutedEventArgs e)
{
TextRange textRange = new TextRange(TextBox.Selection.Start, TextBox.Selection.End);
var currentTextDecoration = textRange.GetPropertyValue(Inline.TextDecorationsProperty);
TextDecorationCollection newTextDecoration;
if (currentTextDecoration != DependencyProperty.UnsetValue)
newTextDecoration = ((TextDecorationCollection)currentTextDecoration == TextDecorations.Strikethrough) ? new TextDecorationCollection() : TextDecorations.Strikethrough;
else
newTextDecoration = TextDecorations.Strikethrough;
textRange.ApplyPropertyValue(Inline.TextDecorationsProperty, newTextDecoration);
}
我想为我的自定义添加一个 TextDecorations.Strikethrough
装饰按钮 RichTextBox
我正在使用下面的代码添加和删除 TextDecoration
事情是我得到了一个 InvalidCastException: Unable to cast object of type 'MS.Internal.NamedObject' to type 'System.Windows.TextDecorationCollection'.
当我选择的范围大于被划线的范围并单击 "StrikeThrough" 按钮时。
我的代码
private void StrikeOutButton_Click(object sender, RoutedEventArgs e)
{
TextRange range = new TextRange(this.MyRichTextBox.Selection.Start,
this.MyRichTextBox.Selection.End);
TextDecorationCollection tdc =
(TextDecorationCollection)this.MyRichTextBox.
Selection.GetPropertyValue(Inline.TextDecorationsProperty);
/*
if (tdc == null || !tdc.Equals(TextDecorations.Strikethrough))
{
tdc = TextDecorations.Strikethrough;
}
else
{
tdc = new TextDecorationCollection();
}
* */
if (tdc == null || !tdc.Contains(TextDecorations.Strikethrough[0]))
{
tdc = TextDecorations.Strikethrough;
}
else
{
tdc = new TextDecorationCollection();
}
range.ApplyPropertyValue(Inline.TextDecorationsProperty, tdc);
}
注释掉的代码也不起作用。
我打算 post ExceptionDetails,但我认为它非常清楚。
有人可以提供解决方法吗?
问题是您将得到 DependencyProperty.UnsetValue
如果您的完整文本没有用删除线装饰。
因此您可以检查 DependencyProperty.UnsetValue
并在这种情况下应用删除线。
我做了一个简短的测试,这个解决方案对我有用:
private void StrikeOutButton_Click(object sender, RoutedEventArgs e)
{
TextRange textRange = new TextRange(TextBox.Selection.Start, TextBox.Selection.End);
var currentTextDecoration = textRange.GetPropertyValue(Inline.TextDecorationsProperty);
TextDecorationCollection newTextDecoration;
if (currentTextDecoration != DependencyProperty.UnsetValue)
newTextDecoration = ((TextDecorationCollection)currentTextDecoration == TextDecorations.Strikethrough) ? new TextDecorationCollection() : TextDecorations.Strikethrough;
else
newTextDecoration = TextDecorations.Strikethrough;
textRange.ApplyPropertyValue(Inline.TextDecorationsProperty, newTextDecoration);
}