private void button1_Click(object sender, EventArgs e)//버튼 클릭 이벤트
{
Form2 newform2= new Form2();//폼2를 사용할 수 있도록
newform2.ShowDialog();//폼2를 호출 후엔 창을 닫기 전까지 폼1을 제어할 수 없음
newform2.Show();//폼2를 호출해도 폼1을 제어할 수 있음
}
private void button1_Click(object sender, EventArgs e)//버튼 클릭 이벤트
{
Form2 newform2= new Form2();//폼2를 사용할 수 있도록
newform2.Close(); //폼2를 닫기
}