111,126
社区成员
发帖
与我相关
我的任务
分享
public partial class MSG : Form
{
public delegate void MyDelegate(string text);
public event MyDelegate OnInput;
private void button1_Click(object sender, EventArgs e)
{
OnInput(textBox1.Text);
this.Close();
}
}
public partial class Form1 : Form
{
private void button4_Click(object sender, EventArgs e)
{
MSG msg = new MSG();
msg.OnInput += new MSG.MyDelegate(msg_OnInput);
}
void msg_OnInput(string text)
{
//do something;
}
}