發布時間:2020-11-30 15:47 作者:獨孤劍 閱讀:1861
Winform 設置 RichTextBox 控件字體大小和樣式, 設置 FontStyle (粗體, 斜體, 下劃線, 刪除線), ForeColor (字體顏色)
新建窗體,拖拽一個 RichTextBox 控件到窗體
using System; using System.Windows.Forms; namespace DemoWinForm { public partial class Form1 : Form { public Form1() { InitializeComponent(); // 設置字體為“宋體” this.richTextBox1.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.richTextBox1.Font = new System.Drawing.Font(this.richTextBox1.Font, System.Drawing.FontStyle.Bold); // 或者 // this.richTextBox1.Font = new System.Drawing.Font("SimSun", 8.25F, System.Drawing.FontStyle.Bold); // 設置字體顯示顏色為紅色 this.richTextBox1.ForeColor = System.Drawing.Color.Red; } } }
微信打賞, 微信掃一掃
支付寶打賞, 支付寶掃一掃
如果文章對您有幫助,歡迎給作者打賞