我的程序中有以下代码。弹出一个消息框以显示字段表单的内容。点击 OK 后,会弹出另一个询问用户信息是否正确。我想将两者结合起来,弹出消息框,显示表单内容并询问信息是否正确,并带有一个是/否按钮。我已经尝试将两者结合起来无济于事。我相信我缺少一个句法概念。有任何想法吗?
//shows contents of form fields
StringBuilder MessageText = new StringBuilder();
MessageText.AppendLine(string.Format("Coil#: {0}", coil_Num.Text));
MessageText.AppendLine(string.Format("Location: {0}", location_box.Text));
MessageText.AppendLine(string.Format("Sub-Area: {0}", sub_area_box.Text));
MessageText.AppendLine(string.Format("Row: {0}", row_Num.Text));
MessageBox.Show(MessageText.ToString());
//asks if info is correct, with a YES/NO button and question mark
DialogResult result1 = MessageBox.Show("Information is correct?",
"Double Check Form Information",
MessageBoxButtons.YesNoCancel,
MessageBoxIcon.Question);