您好,登錄后才能下訂單哦!
要在 Button 控件上自定義繪制文本,您需要創建一個自定義 Button 類并重寫其 OnPaint 方法
using System;
using System.Drawing;
using System.Windows.Forms;
public class CustomButton : Button
{
public CustomButton()
{
this.SetStyle(ControlStyles.UserPaint | ControlStyles.AllPaintingInWmPaint | ControlStyles.DoubleBuffer, true);
}
protected override void OnPaint(PaintEventArgs pevent)
{
// 調用基類的 OnPaint 方法以繪制按鈕背景和邊框
base.OnPaint(pevent);
// 設置文本格式
StringFormat stringFormat = new StringFormat();
stringFormat.Alignment = StringAlignment.Center;
stringFormat.LineAlignment = StringAlignment.Center;
// 設置文本顏色和字體
Color textColor = this.Enabled ? ForeColor : SystemColors.GrayText;
Font textFont = new Font(this.Font, FontStyle.Bold);
// 繪制文本
pevent.Graphics.DrawString(this.Text, textFont, new SolidBrush(textColor), this.ClientRectangle, stringFormat);
}
}
現在,您可以在窗體上使用此自定義 Button 控件。請注意,這個示例將文本設置為粗體,您可以根據需要修改文本樣式。如果您希望在運行時更改文本樣式,可以將相關屬性添加到自定義 Button 類中,并在 OnPaint 方法中使用這些屬性。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。