使用delegate实现两窗体传参代码
摘要:
//实现功能,Form1中的txtname文本框调用Form2中的txtname2文本框中值// Form1 code Form2 f2 = new Form2(); f2.mydelstr = new Form2.MyDelStr(getTxt); f2.show(); // 写一个方法,返回的值要和delegate类型返回的值一样(这里是void) private void getTxt(string str) { this.txtname.text = str; }// Form2 Code //先定义delegat... 阅读全文
posted @ 2009-12-21 11:22 SonyXbox 阅读(201) 评论(0) 推荐(0) 编辑