public void DisPlayButton()
        {
            SimpleButton BT = new SimpleButton();
            BT.Text = "aa";
            BT.Location = new Point(30, 27);
            BT.Size = new Size(110, 60);
            forms.Controls.Add(BT);
            BT.Click += new EventHandler(ShowForm);
        }        private void ShowForm(object sender, EventArgs e)
        {
            MessageBox.Show("你点击的是" + + "控件");
        }我想MessageBox.Show我点击Button 的Text