我目前正在制作一个包含富文本编辑器的应用程序,但是我在将格式应用于文本时遇到了一些问题。具体来说,我在选中下划线时遇到问题。这是我目前的代码。
private void UnderlineButton_Click(object sender, RoutedEventArgs e)
{
ITextSelection selectedText = rtfEditor.Document.Selection;
if (selectedText != null)
{
ITextCharacterFormat charFormatting = selectedText.CharacterFormat;
charFormatting.Underline = UnderlineType.Single;
//charFormatting.Underline = FormatEffect.;
selectedText.CharacterFormat = charFormatting;
}
}
帮助将不胜感激!
答案 0 :(得分:0)
你可以这样做:
rtfEditor.Document.Selection.CharacterFormat.Underline = UnderlineType.Thin;
或
ITextSelection selectedText = rtfEditor.Document.Selection;
selectedText.CharacterFormat.Underline = UnderlineType.Double;