如何更改文本的字体样式



如何更改字体样式(常规,粗体等(?

到目前为止,我拥有的是:

if (listBox1.SelectedIndex == 3)
{
   if (textBox1.Text == "regular")
   {
     //FontStyle regular = new FontStyle   !!!wrong one!!!
   }
}

所以我需要的是,当我在文本框中键入"常规"时,字体样式将更改为常规。我该怎么做?

您需要创建一个新字体并将其应用于文本框:

textBox1.Font = new Font(FontFamily.GenericSansSerif, 12.0F, FontStyle.Normal);

这将创建一个具有新家庭等。您可以从现有 Font 对象中读取大小和系列以保留它们。

textBox1.Font = new Font(textBox1.Font, FontStyle.Normal);

有关 Font 类属性的详细信息,请参阅 MSDN 页

您需要

设置 Control.FontWeight 属性

if (listBox1.SelectedIndex == 3)
{
      if (textBox1.Text == "regular")
      {         
          TextBox1.FontWeight = FontWeights.Regular;
      }
}

您是否正在寻找这样的东西:

textBox1.Font = new Font(textBox1.Font, FontStyle.Bold);

相关内容

  • 没有找到相关文章

最新更新