Winform 设置 TextxBox (文本框) 控件字体大小和样式, 设置 FontStyle (粗体, 斜体, 下划线, 删除线), ForeColor (字体颜色)

Winform 设置 TextxBox (文本框) 控件字体大小和样式, 设置 FontStyle (粗体, 斜体, 下划线, 删除线), ForeColor (字体颜色)


新建窗体,拖拽一个TextBox (文本框) 控件到窗体

using System;
using System.Windows.Forms;

namespace DemoWinForm
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();

            // 设置文本框字体为“宋体”
            this.textBox1.Font = new System.Drawing.Font("SimSun", 8.25F);

            // 设置文本框字体风格, 加粗
            // System.Drawing.FontStyle.Regular = 常规
            // System.Drawing.FontStyle.Bold = 加粗
            // System.Drawing.FontStyle.Italic = 倾斜
            // System.Drawing.FontStyle.Underline = 下划线
            // System.Drawing.FontStyle.Strikeout = 删除线
            this.textBox1.Font = new System.Drawing.Font(this.textBox1.Font, System.Drawing.FontStyle.Bold);
            // 或者
            // this.textBox1.Font = new System.Drawing.Font("SimSun", 8.25F, System.Drawing.FontStyle.Bold);

            // 设置文本框字体显示颜色为红色
            this.textBox1.ForeColor = System.Drawing.Color.Red;
        }
    }
}


作者最新文章
C# 使用 CSVHelper 操作 csv 文件, .net core, .net framework 读取写入 csv 文件
C# 实现字符串文本换行的方法,文本如何换行
C# 如何循环读取文件每一行文本内容
C# DateTime AddMonths 的错误用法导致跳过日期
C# 全角转换半角,半角转换为全角