在我用C#編寫的應用程序中,我右鍵單擊解決方案資源管理器上的項目,然後選擇添加,然後選擇Windows窗體並選擇Windows窗體並按下OK!單擊按鈕時如何顯示錶單?
然後我叫我的形式MessageForm而不是默認的名稱(窗體2)
現在我形成一個我加了一個按鈕,我想這個按鈕可以顯示我的其他形式(MessageForm),當我點擊它所以我的代碼是:
MessageForm Frm = new MessageForm();
Frm.Show();
但有一個錯誤,我不能編譯代碼,因爲我發現了以下內容:
Error 1 The type or namespace name 'MessageForm' could not be found (are you missing a using directive or an assembly reference?)
怎麼會這樣?
始終重命名 –