|
例子:
下面是子窗體代碼,要求輸入phone,然后會(huì)返回給父窗體。
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 Phone : Form
{
public Phone()
{
InitializeComponent();
btnOK.DialogResult = DialogResult.OK;
btnOK.DialogResult = DialogResult.Cancel;
}
public string PhoneNumber
{
get { return textBox1.Text; }
set { textBox1.Text = value; }
}
private void Phone_Load(object sender, EventArgs e)
{
}
}
}
不包含任何處理按鈕單擊事件的代碼,因?yàn)樵O(shè)置了每個(gè)按鈕的dialogresult屬性,所以單擊OK或者Cancel按鈕后,窗體就消失了。下面的代碼顯示了父窗體中調(diào)用Phone對(duì)話框的方法。
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();
}
}
}
看起來(lái)非常簡(jiǎn)單,創(chuàng)建新的Phone對(duì)象frm,在調(diào)用frm.showdialog方法是,代碼停止,等待phone窗體返回,接著檢查phone窗體的dialogresult屬性,由于窗體還沒有釋放,是不可見的,所以仍可以訪問公共屬性phonenumber,一旦獲取了需要的數(shù)據(jù),就可以嗲用窗體的close方法。
一切正常,但是如果返回的格式不正確怎么辦,就要把showdialog方法放在循環(huán)中,就可以再次調(diào)用,讓用戶重新輸入,就可以得到正確的值。
上面的代碼改成下面的即可。
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();
}
}
}
AspNet技術(shù):C#,winform,ShowDialog,子窗體向父窗體傳值,轉(zhuǎn)載需保留來(lái)源!
鄭重聲明:本文版權(quán)歸原作者所有,轉(zhuǎn)載文章僅為傳播更多信息之目的,如作者信息標(biāo)記有誤,請(qǐng)第一時(shí)間聯(lián)系我們修改或刪除,多謝。