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

溫馨提示×

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
宜兴市| 论坛| 通河县| 南充市| 额济纳旗| 花垣县| 都兰县| 南安市| 新乡县| 金坛市| 望奎县| 绵竹市| 扎赉特旗| 双江| 凤冈县| 建瓯市| 乌兰察布市| 杭锦旗| 云梦县| 晋中市| 米易县| 福州市| 静宁县| 大田县| 乐山市| 阿瓦提县| 临朐县| 富川| 铜鼓县| 黄龙县| 军事| 沾益县| 津南区| 盐津县| 辽中县| 克什克腾旗| 怀宁县| 昌图县| 丰原市| 从江县| 安顺市|