2013年4月9日
摘要: 一、主窗体界面 Form2 frm = new Form2(); frm.AccountEvent += new Form2.AccountDelegate(frm_AccountEvent); frm.Show();二、工具界面 public delegate void AccountDelegate(string number); public event AccountDelegate AccountEvent; private void button1_Click(object sender, EventArgs e) { if (AccountEvent!=... 阅读全文
posted @ 2013-04-09 16:08 ancient_sir 阅读(174) 评论(0) 推荐(0) 编辑