我試圖更改Label text
parent Form
從Child form
但我收到此錯誤Object reference not set to an instance of an object.
哪裏出錯? 這裏是代碼我使用錯誤:試圖從Form.Controls集合中獲取控件時的對象null引用
private void btnMedicalClgList_Click(object sender, EventArgs e)
{
this.ParentForm.Controls["lblMenuItem"].Text = "Medical College List";//getting error here
ShowMedicalClgList medifrm = new ShowMedicalClgList();
medifrm.MdiParent = this.ParentForm;
this.Hide();
medifrm.Show();
}
'this.ParentForm.Controls [ 「lblMenuItem」]'可能是您的NUL l參考例外來自於。 – JeremiahDotNet
@JeremiahDotNet當然,它不是來自字符串文字 – DGibbs
也許'this.ParentForm'爲空或沒有控制名稱'lblMenuItem'。嘗試調試。 –