中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

C#單選框的自定義繪制方法

c#
小樊
82
2024-08-08 20:33:36
欄目: 編程語言

要自定義繪制C#單選框,可以通過繼承自RadioButton控件并重寫其OnPaint方法來實現。以下是一個簡單的示例:

using System.Drawing;
using System.Windows.Forms;

public class CustomRadioButton : RadioButton
{
    protected override void OnPaint(PaintEventArgs e)
    {
        base.OnPaint(e);

        // 自定義繪制單選框
        Rectangle boxRect = new Rectangle(0, (this.Height - 16) / 2, 16, 16);
        e.Graphics.FillEllipse(Brushes.White, boxRect);
        e.Graphics.DrawEllipse(Pens.Black, boxRect);

        if (this.Checked)
        {
            Rectangle innerRect = new Rectangle(boxRect.X + 4, boxRect.Y + 4, 8, 8);
            e.Graphics.FillEllipse(Brushes.Black, innerRect);
        }

        // 繪制文本
        using (StringFormat sf = new StringFormat())
        {
            sf.LineAlignment = StringAlignment.Center;

            Rectangle textRect = new Rectangle(boxRect.Right + 5, 0, this.Width - boxRect.Right - 5, this.Height);
            e.Graphics.DrawString(this.Text, this.Font, Brushes.Black, textRect, sf);
        }
    }
}

在上面的示例中,我們繼承自RadioButton控件,并重寫了其OnPaint方法來自定義繪制單選框。我們首先繪制一個白色的圓形框,并用黑色描邊,然后根據單選框是否被選中來填充一個黑色的圓形。最后,我們使用DrawString方法繪制單選框的文本。

要使用這個自定義的單選框控件,只需在窗體中添加一個CustomRadioButton控件即可。例如:

CustomRadioButton customRadioButton1 = new CustomRadioButton();
customRadioButton1.Text = "Option 1";
customRadioButton1.Location = new Point(10, 10);
this.Controls.Add(customRadioButton1);

0
抚远县| 新郑市| 景宁| 万盛区| 新营市| 股票| 当阳市| 张家川| 孟州市| 甘谷县| 福州市| 洛阳市| 邵阳县| 旬邑县| 天全县| 普定县| 义马市| 自贡市| 新乡市| 乾安县| 万全县| 大英县| 石首市| 山阴县| 福贡县| 卫辉市| 碌曲县| 烟台市| 绥德县| 奉新县| 宁强县| 建昌县| 南川市| 普格县| 太谷县| 正镶白旗| 揭阳市| 富宁县| 高雄县| 淮阳县| 醴陵市|