应该是 :this.Controls.Add(button1);吧你可以理解为: 当前窗体实例(this)的控件中(Controls)添加新控件 button1。就是 把button 添加到当前窗体中。如果要把button移除当前窗体,可以使用 this.Controls.Remove(button1);或者 你所谓的 this->Controls->Remove(button1);