摘要: 通过公共静态类进行传值; 通过绑定事件进行传值; 使用Attribute public partial class Form1 : Form { private void button1_Click(object sender, EventArgs e) { Form2 frm2 = new Form2(); frm2.Show(this); } } public partial class Form2 : Form { private void button1_Click(object sender, EventArgs e) { Form1 frm1 = (Form 阅读全文
posted @ 2011-02-11 23:16 TerryChou 阅读(4903) 评论(4) 推荐(0) 编辑
摘要: using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Text; using System.Windows.Forms; using System.IO; namespace copyFi... 阅读全文
posted @ 2011-02-11 22:41 TerryChou 阅读(3192) 评论(1) 推荐(2) 编辑