2014-03-19 50 views
-2

我在一個新項目中使用DevExpress創建了一個窗體名稱「AddProject」。 如果我構建解決方案,我得到以下錯誤:無法在Visual Studio 2008中運行Dev Express窗體

The type or namespace name 'AddProject' could not be found (are you missing a using directive or an assembly reference?)

我也試圖將其在Program.cs中添加爲:

Application.Run(new AddProject()); 
+1

歡迎StackOverflow上。請編輯您的問題併發布錯誤發生的代碼行和/或位置。 – helb

+0

@helb當我嘗試在Program.cs中添加表單時出現錯誤 – Danyal

回答

0

確保包含AddProject類項目被添加爲參考您的應用程序(在解決方案資源管理器中展開您的應用程序項目,右鍵單擊References,選擇「Projects」選項卡,選擇AddProject項目)。

此外,請確保您使用的命名空間中的Program.cs:

using AddProject; // or whatever the namespace of the AddProject class is 
+0

「添加引用」中的「項目」選項卡中沒有「AddProject」。 如何將其添加到我的項目中? 我簡單地創建了一個'Forms'文件夾,然後在該文件夾中添加新項目'AddProject' – Danyal

+0

好了,然後使用AddProject;就足夠了。 – helb

+0

我在Program.cs中添加'使用AddProject',但它無法識別它,並給我他同樣的錯誤。 – Danyal

相關問題