强调上标,WinForms

时间:2015-09-14 13:02:30

标签: c# winforms richtextbox underline

有没有办法在中为上标加下划线,但是不是,因为它默认完成,但正如here所述?它应该在中完成。

我的简单代码: 比方说,我们有简单的RTB,名为fixedRichTextBoxcs1,我们有一个button1:

 private void button1_Click(object sender, EventArgs e)
    {
        this.fixedRichTextBoxcs1.Text = "This is result";
        this.fixedRichTextBoxcs1.Select(0, this.fixedRichTextBoxcs1.Text.Length);
        this.fixedRichTextBoxcs1.SelectionFont = new Font(this.fixedRichTextBoxcs1.SelectionFont, FontStyle.Underline);
        this.fixedRichTextBoxcs1.Select(0, 1);
        this.fixedRichTextBoxcs1.SelectionCharOffset = 15;
    }

它不能按预期工作,结果是: enter image description here

0 个答案:

没有答案