메세지박스는 사용자와의 커뮤티케이션을 위한 안내 확인 창입니다. 가장 기본이면서, 기본 어플리케이션에서는 없어서는 안되는 컨트롤입니다. 확인 알람창 (Yes/No) 예제 var confirmResult = MessageBox.Show("Are you sure to delete this item ??", "Confirm Delete!!", MessageBoxButtons.YesNo); if (confirmResult == DialogResult.Yes) { // If 'Yes', do something here. } else { // If 'No', do something here. } 출처: http://stackoverflow.com/questions/3845695/is-there-a-builtin-c..