這篇文章主要講解了“C#實(shí)現(xiàn)WinForm傳值的方法”,文中的講解內(nèi)容簡單清晰,易于學(xué)習(xí)與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學(xué)習(xí)“C#實(shí)現(xiàn)WinForm傳值的方法”吧!
創(chuàng)新互聯(lián)公司是專業(yè)的靜寧網(wǎng)站建設(shè)公司,靜寧接單;提供成都網(wǎng)站設(shè)計(jì)、網(wǎng)站建設(shè),網(wǎng)頁設(shè)計(jì),網(wǎng)站設(shè)計(jì),建網(wǎng)站,PHP網(wǎng)站建設(shè)等專業(yè)做網(wǎng)站服務(wù);采用PHP框架,可快速的進(jìn)行靜寧網(wǎng)站開發(fā)網(wǎng)頁制作和功能擴(kuò)展;專業(yè)做搜索引擎喜愛的網(wǎng)站,專業(yè)的做網(wǎng)站團(tuán)隊(duì),希望更多企業(yè)前來合作!
C#實(shí)現(xiàn)WinForm傳值的思路:
從Form1傳遞到Form2: 2個窗體即兩個類,兩個窗體間的數(shù)據(jù)傳送,可以采用構(gòu)造函數(shù)來實(shí)現(xiàn)。
從Form2返回到Form1,并傳遞數(shù)據(jù):實(shí)例化Form2后,打f2用ShowDialog()方法,然后等待f2關(guān)閉時再回傳數(shù)據(jù)到Form1。
C#實(shí)現(xiàn)WinForm傳值步驟及代碼:
1:新建兩個窗口: Form1,Form2;
2:打開Form2,添加一個textBox:textBox1;添加一個Button:button1;然后添加一個構(gòu)造函數(shù):
//定義一個變量,用來傳值。 public string returnValue ; public Form2(string txtValue) { InitializeComponent(); this.textBox1.Text = txtValue; }
然后在button1的單擊事件中添加如下代碼:
private void button1_Click(object sender, EventArgs e) { returnValue = this.textBox1.Text; this.Close(); }
3:Form1中添加一個textBox:textBox1;添加一個Button:button1;然后在button1的單擊事件中添加如下代碼:
private void button1_Click(object sender, EventArgs e) { string txtValue = this.textBox1.Text; Form2 f2 = new Form2(txtValue); f2.ShowDialog(); this.textBox1.Text = f2.returnValue; }
Form1 中 (父窗口:)
public class Form1 : System.Windows.Forms.Form { private System.Windows.Forms.Button btnOpen; public System.Windows.Forms.TextBox txtContent; //注意是public ........ ........ [STAThread] static void Main() { Application.Run(new Form1()); } private void btnOpen_Click(object sender, System.EventArgs e) { Form2 frm=new Form2(this); frm.ShowDialog(); } }
Form2中(子窗口)
public class Form2 : System.Windows.Forms.Form { private System.Windows.Forms.Button button1; private System.Windows.Forms.TextBox txtValue; private Form _parentForm=null; public Form2() { InitializeComponent(); } public Form2(Form parentForm) { InitializeComponent(); this._parentForm =parentForm; } ........ ........
更新父窗口中文本框中的值!
private void button1_Click(object sender, System.EventArgs e) { ((Form1)_parentForm).txtContent.Text =this.txtValue .Text ; }
感謝各位的閱讀,以上就是“C#實(shí)現(xiàn)WinForm傳值的方法”的內(nèi)容了,經(jīng)過本文的學(xué)習(xí)后,相信大家對C#實(shí)現(xiàn)WinForm傳值的方法這一問題有了更深刻的體會,具體使用情況還需要大家實(shí)踐驗(yàn)證。這里是創(chuàng)新互聯(lián),小編將為大家推送更多相關(guān)知識點(diǎn)的文章,歡迎關(guān)注!