如何在WinRT RichEditBox中为所选文本加下划线?

时间:2015-06-18 06:54:29

标签: c# windows-runtime richeditbox

我目前正在制作一个包含富文本编辑器的应用程序,但是我在将格式应用于文本时遇到了一些问题。具体来说,我在选中下划线时遇到问题。这是我目前的代码。

    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;
        }
    }

帮助将不胜感激!

1 个答案:

答案 0 :(得分:0)

你可以这样做:

rtfEditor.Document.Selection.CharacterFormat.Underline = UnderlineType.Thin;

ITextSelection selectedText = rtfEditor.Document.Selection;
selectedText.CharacterFormat.Underline = UnderlineType.Double;