您好,我需要這裏的代碼幫助 我真的對這個錯誤感到困惑,我想將textBox1(表單1)的值傳遞給textBox7(表單2)。 和它說的NullReferenceException是未處理未設置對象實例的對象引用文本框
表1
private void button1_Click(object sender, EventArgs e)
{
try
{
textBox1.Text = setIDtruk.getText;
this.Close();
}
catch(Exception)
{
MessageBox.Show("Wrong");
}
}
表2
public string getText
{
get
{
return textBox7.Text; // error in this statement
}
}
任何人可以幫助我嗎? 謝謝
從哪種方法可以得到例外? B/C你應該趕上第一個。另外,你能告訴我們文本框的構造函數嗎? –
@JohnYost'return textBox7.Text; //在這個聲明中出錯' – davidsbro
_「我想將textBox1(表單1)的值傳遞給textBox7(表單2)」_ - 你做的恰恰相反。 –