91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

C#中如何實現單選框

c#
小樊
81
2024-08-08 20:22:41
欄目: 編程語言

在C#中,可以使用RadioButton控件來實現單選框。以下是一個簡單的示例代碼:

using System;
using System.Windows.Forms;

public class MainForm : Form
{
    private RadioButton radioButton1;
    private RadioButton radioButton2;

    public MainForm()
    {
        InitializeComponent();
    }

    private void InitializeComponent()
    {
        this.radioButton1 = new RadioButton();
        this.radioButton1.Text = "Option 1";
        this.radioButton1.Location = new System.Drawing.Point(50, 50);
        this.Controls.Add(this.radioButton1);

        this.radioButton2 = new RadioButton();
        this.radioButton2.Text = "Option 2";
        this.radioButton2.Location = new System.Drawing.Point(50, 80);
        this.Controls.Add(this.radioButton2);

        this.radioButton1.CheckedChanged += new EventHandler(radioButton_CheckedChanged);
        this.radioButton2.CheckedChanged += new EventHandler(radioButton_CheckedChanged);
    }

    private void radioButton_CheckedChanged(object sender, EventArgs e)
    {
        RadioButton radioButton = (RadioButton)sender;

        if (radioButton.Checked)
        {
            MessageBox.Show("Selected option: " + radioButton.Text);
        }
    }

    public static void Main()
    {
        Application.Run(new MainForm());
    }
}

在上面的示例中,創建了兩個RadioButton控件并添加到窗體中。然后通過給每個單選框的CheckedChanged事件關聯一個事件處理方法來實現當選擇某個單選框時彈出消息框顯示選項內容。

0
桓台县| 岱山县| 民丰县| 迭部县| 海城市| 正蓝旗| 广灵县| 黑山县| 通渭县| 永川市| 山东省| 溧水县| 财经| 福贡县| 禹州市| 江油市| 富阳市| 鄯善县| 庆云县| 镇宁| 上饶县| 东城区| 济南市| 彰化县| 衡南县| 类乌齐县| 铜鼓县| 宜章县| 平凉市| 本溪市| 大洼县| 全州县| 渝北区| 汕尾市| 武汉市| 远安县| 三明市| 鞍山市| SHOW| 峨眉山市| 改则县|