更改 TextBox 中的字体样式

Posted

技术标签:

【中文标题】更改 TextBox 中的字体样式【英文标题】:Change a font style in a TextBox 【发布时间】:2011-12-02 11:16:09 【问题描述】:

我有几个添加输入的文本框。点击按钮后,所有这些输入都会显示在程序底部的文本框中。

我想让其中一个字符串在程序底部的文本框中显示为斜体。

这就是我所拥有的。

private void button1_Click(object sender, EventArgs e) 字符串作者; 字符串名称; 字符串年份; 字符串标题; 字符串的地方; 字符串发布者;

        name = textBox2.Text + ", ";
        author = textBox1.Text + ". ";
        year =  "(" + textBox3.Text + ") ";
        title = textBox4.Text + ", ";
        place = textBox5.Text + ", ";
        publisher = textBox6.Text + ".";


        // output to reference field


        richTextBox1.Text = name + author + year + title + place + publisher;

    

我想要的是用斜体显示标题字符串。

任何帮助都会很棒。 谢谢

【问题讨论】:

【参考方案1】:
richTextBox1.Find(title, RichTextBoxFinds.MatchCase);
richTextBox1.SelectionFont = new Font(richTextBox1.Font, FontStyle.Italic);

这应该使书名和书名斜体,同时保持字体与富文本框的其余部分相同。

【讨论】:

以上是关于更改 TextBox 中的字体样式的主要内容,如果未能解决你的问题,请参考以下文章

安装 zsh 并更改字体样式后,我在 VSCode 中的终端字体很小?

如何使用 zee 样式主题更改 Wordpress 标题中的字体

在不丢失 Html 样式的情况下更改 NSAttributedString 中的字体大小 - Swift

CSS里怎么更改字体样式?需要更改字体和居中显示

如何更改wireshark的字体和样式

在鼠标悬停时更改按钮字体粗细和/或字体样式[关闭]