怎样判断一个一个控件是否已经销毁
1个回答
2017-02-16 · 知道合伙人互联网行家
关注
展开全部
只能用代理做了~
///窗体一
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
Form2 f2 = new Form2();
//把form2的setText事件交给form1的GetText(string text)方法处理。
f2.Test += new Form2.SetText(GetText);
f2.ShowDialog();
}
public void GetText(string text)
{
string value = text;
this.button1.Text = value;
}
}
/**************************************************************/
//窗体二
public partial class Form2 : Form
{
//第一种方法就是代理。
public delegate void SetText(string text);
public event SetText Test;
public Form2()
{
InitializeComponent();
}
private void Form2_Load(object sender, EventArgs e)
{
}
private void button1_Click(object sender, EventArgs e)
{
// 第一种方法
if (Test != null)
{
Test(textBox1.Text);
}
this.Close();
}
}
你可以建立出来试试就知道了~~~~
///窗体一
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
Form2 f2 = new Form2();
//把form2的setText事件交给form1的GetText(string text)方法处理。
f2.Test += new Form2.SetText(GetText);
f2.ShowDialog();
}
public void GetText(string text)
{
string value = text;
this.button1.Text = value;
}
}
/**************************************************************/
//窗体二
public partial class Form2 : Form
{
//第一种方法就是代理。
public delegate void SetText(string text);
public event SetText Test;
public Form2()
{
InitializeComponent();
}
private void Form2_Load(object sender, EventArgs e)
{
}
private void button1_Click(object sender, EventArgs e)
{
// 第一种方法
if (Test != null)
{
Test(textBox1.Text);
}
this.Close();
}
}
你可以建立出来试试就知道了~~~~
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询