我有兩種形式。C#從以前的表格中獲取textBox值
表格A要求用戶輸入文本到兩個文本框中,名稱和編號。
表格B從Form A中的兩個文本框中獲取文本並將文本顯示爲兩個標籤。
現在,程序運行時,兩個標籤不顯示文本。
請幫助,在此先感謝。
以下是我的B型碼:
Menu_Privacy_Cleaner_Investigator pci = new Menu_Privacy_Cleaner_Investigator();
String name = pci.textBoxName.Text;
String number = pci.textBoxNumber.Text;
labelName.Text = name;
labelNumber.Text = number;