不包含任何处理按钮单击事件的代码,因为设置了每个按钮的dialogresult属性,所以单击OK或者Cancel按钮后,窗体就消失了。下面的代码显示了父窗体中调用Phone对话框的方法。
using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Text; using System.Windows.Forms; namespace WindowsApplication1 { public partial class Form7 : Form { public Form7() { InitializeComponent(); } private void button1_Click(object sender, EventArgs e) { Phone frm = new Phone(); frm.ShowDialog(); if (frm.DialogResult == DialogResult.OK) { label1.Text = "Phone number is " + frm.PhoneNumber; } else if (frm.DialogResult == DialogResult.Cancel) { label1.Text = "form was canceled"; } frm.Close(); } } }看起来非常简单,创建新的Phone对象frm,在调用frm.showdialog方法是,代码停止,等待phone窗体返回,接着检查phone窗体的dialogresult属性,由于窗体还没有释放,是不可见的,所以仍可以访问公共属性phonenumber,一旦获取了需要的数据,就可以嗲用窗体的close方法。
一切正常,但是如果返回的格式不正确怎么办,就要把showdialog方法放在循环中,就可以再次调用,让用户重新输入,就可以得到正确的值。 using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Text; using System.Windows.Forms; namespace WindowsApplication1 { public partial class Form7 : Form { public Form7() { InitializeComponent(); } private void button1_Click(object sender, EventArgs e) { Phone frm = new Phone(); while (true) { frm.ShowDialog(); if (frm.DialogResult == DialogResult.OK) { label1.Text = "Phone number is " + frm.PhoneNumber; if (frm.PhoneNumber.Length == 8 || frm.PhoneNumber.Length == 12) { break; } else { MessageBox.Show(""); } } else if (frm.DialogResult == DialogResult.Cancel) { label1.Text = "form was canceled"; break; } } frm.Close(); } } }