答案 0 :(得分:0)
编写以下代码onclick按钮事件,这是一个非常简单的任务。
//Creating New Button
Button btn = new Button();
//Adding Some text to button
btn.Text = "New Button";
//Specifing Location of Button to be placed
btn.Location = new Point(200, 200);
//Adding button to form
this.Controls.Add(btn);
尝试上面的代码。