c# winform之多个控件统一事件处理程序

本文介绍了一个使用C#编写的WinForm应用程序实例,展示了如何创建并布局多个单选按钮,以及如何为这些单选按钮设置统一的事件处理程序。通过对事件处理程序的详细解释,读者可以了解到如何区分触发事件的单选按钮。
摘要由CSDN通过智能技术生成
using System;
using System.Collections.Generic;
using System.Windows.Forms;
using System.Drawing;
using System.Drawing.Drawing2D;
using System.Collections;
namespace WindowsApplication1
{
    //手工编写winform
    class test : Form
    {

        //测试control自带的基方法与事件对应的方法执行情况(各是否执行及执行的次序)
        RadioButton rb1;
        RadioButton rb2;
        RadioButton rb3;
        string[] str ={"radio1","radio2","radio3" };
        public test()
        {
            rb1 = new RadioButton();
            rb1.Text = "radio1";
            rb1.Location = new Point(10, 10);
            rb1.Size = new Size(10, 10);
            rb1.Parent = this;

            rb2 = new RadioButton();
            rb2.Text = "radio2";
            rb2.Location = new Point(10, 40);
            rb2.Size = new Size(10, 10);
            rb2.Parent = this;

            rb3 = new RadioButton();
            rb3.Text = "radio3";
            rb3.Location = new Point(10, 70);
            rb3.Size = new Size(10, 10);
            rb3.Parent = this;

          //三个单选按钮纳入一个事件处理程序
          rb1.CheckedChanged+=new EventHandler(rb1_CheckedChanged);
          rb2.CheckedChanged += new EventHandler(rb1_CheckedChanged);
          rb3.CheckedChanged += new EventHandler(rb1_CheckedChanged);
        }

        //在统一事件处理程序中,判断发起事件的是不同的单选按钮
        //通过controls哈哈,controls[i]
        private void rb1_CheckedChanged(object sender, EventArgs e)
        {
            for(int i=0;i
            {
                if ((RadioButton)sender == Controls[i])
                {
                    if (Controls[i].Text== str[i])
                    {
                        Label lb1 = new Label();

                    }
                }

              
            }
         }

        //经查看control类没有对应控件radiobutton的oncheckedchanged的方法
        //protected override void onch
        public static void Main()
       {
           Application.Run(new test());
       }
    }
           
        

    
 }

来自 “ ITPUB博客 ” ,链接:http://blog.itpub.net/9240380/viewspace-736267/,如需转载,请注明出处,否则将追究法律责任。

转载于:http://blog.itpub.net/9240380/viewspace-736267/

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值