【C#笔记】控件数组与事件

private void Form1_Load(object sender, EventArgs e)
        {
            
           Button[] but = new Button[10];

            for (int i = 0; i < 10; i++)
            {
                but[i] = new Button();
                but[i].Text = "按钮" + i;
                but[i].Left = 82 * i;
                but[i].Width = 80;
                this.Controls.Add(but[i]);
                but[i].Click += new System.EventHandler(this.but_Click);//绑定事件
            }
            
        private void but_Click(object sender,System.EventArgs e)
        {
            MessageBox.Show(((Button)sender).Text+"01");//用sender 判定是那个控件
        }

            
        }

 

posted @ 2015-07-17 15:12  枯腾老树  阅读(964)  评论(0编辑  收藏  举报