Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
953 views
Welcome To Ask or Share your Answers For Others

1 Answer

In you save button put :

 private void btnSave_Click(object sender, EventArgs e)
            {
                x = 4;
                 y = panel1 .Controls.Count * 70;
                Button newButton = new Button ();
                newButton.Height = 150;
                newButton.Width = 60;
                newButton.Location = new Point(x, y);
                newButton.Text= "your text";
                 newButton.Click += new       
              System.EventHandler(Button_Click);             
              tabControl1.TabPages [0].Controls.Add(newButton);

        }

And also you can handel the click of new button created :

public void Button_Click(object sender, EventArgs e)
    {
        Button button = (Button)sender ;
        MessageBox.Show("Button is pressed "+button .Text );

    }

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...