时间:2021-05-28
调用showdialog方法后,调用代码被暂停执行,等到调用showdialog方法的窗体关系后再继续执行。而且窗体可以返回一个dialogresult值,他描述了窗体关闭的原因,例如OK,Cancel,yes,no等。为了让窗体返回一个dialogresult,必须设置窗体的dialogresult值,或者在窗体的一个按钮上设置dialogresult属性。
例子:
下面是子窗体代码,要求输入phone,然后会返回给父窗体。
usingSystem;
usingSystem.Collections.Generic;
usingSystem.ComponentModel;
usingSystem.Data;
usingSystem.Drawing;
usingSystem.Text;
usingSystem.Windows.Forms;
namespaceWindowsApplication1
{
publicpartialclassPhone:Form
{
publicPhone()
{
InitializeComponent();
btnOK.DialogResult=DialogResult.OK;
btnOK.DialogResult=DialogResult.Cancel;
}
publicstringPhoneNumber
{
get{returntextBox1.Text;}
set{textBox1.Text=value;}
}
privatevoidPhone_Load(objectsender,EventArgse)
{
}
}
}
不包含任何处理按钮单击事件的代码,因为设置了每个按钮的dialogresult属性,所以单击OK或者Cancel按钮后,窗体就消失了。下面的代码显示了父窗体中调用Phone对话框的方法。
usingSystem;
usingSystem.Collections.Generic;
usingSystem.ComponentModel;
usingSystem.Data;
usingSystem.Drawing;
usingSystem.Text;
usingSystem.Windows.Forms;
namespaceWindowsApplication1
{
publicpartialclassForm7:Form
{
publicForm7()
{
InitializeComponent();
}
privatevoidbutton1_Click(objectsender,EventArgse)
{
Phonefrm=newPhone();
frm.ShowDialog();
if(frm.DialogResult==DialogResult.OK)
{
label1.Text="Phonenumberis"+frm.PhoneNumber;
}
elseif(frm.DialogResult==DialogResult.Cancel)
{
label1.Text="formwascanceled";
}
frm.Close();
}
}
}
看起来非常简单,创建新的Phone对象frm,在调用frm.showdialog方法是,代码停止,等待phone窗体返回,接着检查phone窗体的dialogresult属性,由于窗体还没有释放,是不可见的,所以仍可以访问公共属性phonenumber,一旦获取了需要的数据,就可以嗲用窗体的close方法。
一切正常,但是如果返回的格式不正确怎么办,就要把showdialog方法放在循环中,就可以再次调用,让用户重新输入,就可以得到正确的值。
上面的代码改成下面的即可。
usingSystem;
usingSystem.Collections.Generic;
usingSystem.ComponentModel;
usingSystem.Data;
usingSystem.Drawing;
usingSystem.Text;
usingSystem.Windows.Forms;
namespaceWindowsApplication1
{
publicpartialclassForm7:Form
{
publicForm7()
{
InitializeComponent();
}
privatevoidbutton1_Click(objectsender,EventArgse)
{
Phonefrm=newPhone();
while(true)
{
frm.ShowDialog();
if(frm.DialogResult==DialogResult.OK)
{
label1.Text="Phonenumberis"+frm.PhoneNumber;
if(frm.PhoneNumber.Length==8||frm.PhoneNumber.Length==12)
{
break;
}
else
{
MessageBox.Show("");
}
}
elseif(frm.DialogResult==DialogResult.Cancel)
{
label1.Text="formwascanceled";
break;
}
}
frm.Close();
}
}
}
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
本文实例讲述了C#实现winform用子窗体刷新父窗体及子窗体改变父窗体控件值的方法。分享给大家供大家参考。具体如下:第一种方法:用委托,Form2和Form3
本文实例讲述了WinForm窗体间传值的方法。分享给大家供大家参考。具体实现方法如下:窗体间传递数据,无论是父窗体操作子窗体,还是子窗体操作符窗体,有以下几种方
本文实例讲述了C#简单实现子窗体向父窗体传值的方法。分享给大家供大家参考。具体如下:击Form1的button1打开Form2再点击Form2的button2在
一、前言我们在做Winform窗体程序开发的时候,会经常遇到窗体之间相互传值。假设有下面的一个场景:一个主窗体和一个子窗体,点击主窗体上面的按钮给子窗体传值,并
今天在做一个联系人管理的C#设计时,遇到了这个问题,我需要将父窗体中的textBox中的值传到子窗体并进行数据库查询操作,我用了new父窗体().textBox