0
我將LabelText
設置爲在Form1
中不可見,並且我在Form2
中設置了button
。如果我在Form2
中登記button
,則Form1
中的LabelText
將會顯示。但是,我試圖找出它,它仍然無法正常工作。使Form1中的LabelText一旦在Form2中點擊按鈕即可見
在Form1:
public void LabelText()
{
label1.Visible = true;
}
在窗體2:
Form1 frm1 = new Form1();
frm1.LabelText();