windows form (表單) 之間傳值

來源:互聯網
上載者:User

申明:轉帖,來自互連網http://blog.csdn.net/tjvictor/archive/2006/06/23/824617.aspx

在windows form之間傳值,我總結了有四個方法:全域變數、屬性、表單建構函式和delegate。

第一個全域變數:

這個最簡單,只要把變數描述成static就可以了,在form2中直接引用form1的變數,代碼如下:

在form1中定義一個static變數public static int i= 9 ;

Form2中的鈕扣按鈕如下:

private void button1_Click(object sender, System.EventArgs e)

{

    textBox1.Text = Form1.i.ToString();

}

 

第二個方法是利用屬性,請詳見部落格:

 

http://blog.csdn.net/tjvictor/archive/2006/06/04/772711.aspx

 

第三個方法是用建構函式:

Form1 的button按鈕這樣寫:

private void button1_Click(object sender, System.EventArgs e)

{

    Form2 temp = new Form2( 9 );

    temp.Show();

}

 

Form2 的建構函式這樣寫:

public Form2( int i )

{

    InitializeComponent();

    textBox1.Text = i.ToString();

}

 

第四個方法是用delegate,代碼如下:

Form2中先定義一個delegate

public delegate void returnvalue( int i );

public returnvalue ReturnValue;

form2 中的button按鈕代碼如下:

private void button1_Click(object sender, System.EventArgs e)

{

    if ( ReturnValue != null )

        ReturnValue( 8 );

}

 

Form1中的button按鍵如下:

private void button1_Click(object sender, System.EventArgs e)

{

    Form2 temp = new Form2( );

    temp.ReturnValue = new temp.Form2.returnvalue( showvalue );

    temp.Show();

}

 

private void showvalue( int i )

{

    textBox1.Text = i.ToString();

}

 

點擊form2的button,form1中的textbox中的值就會相應變化。

 

在這四個方法中,

第一個是雙向傳值,也就是說,form1和form2改變i的值,另一方也會受到影響。

第二個方法可以單向也可以雙向傳值。

第三個方法是form1->form2單向傳值。

第四個方法是form2->form1單向傳值。

 

以後有新的方法我再補充,還有一個就是用event,和delegate差不多,在這裡就不說了。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.