Form1 과 Form2를 생성해 Form1의 button text를 "form2생성"으로 변경 button를 클릭해 button1_Click 함수 생성 public Form1() { InitializeComponent(); this.ClientSize = new System.Drawing.Size(500, 500); button1.Location = new System.Drawing.Point( 500 / 2-button1.Width/2,500/2-button1.Height/2); } private void button1_Click(object sender, EventArgs e) { Form2 f2 = new Form2(); this.AddOwnedForm(f2); //f2는 form1의 자식 f2...