我有Program.cs的標準代碼:Application.Run(new Form1());給錯誤
using System;
using System.Collections.Generic;
using System.Linq;
using System.Windows.Forms;
namespace cellap
{
static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new Form1());
}
}
}
- 我創建了一個新的項目
- 我導入現有的Form1的調查,並取代現有的Form1中
當我運行該應用程序,我在提到的行上得到一個錯誤:
錯誤1無法找到類型或名稱空間名稱'Form1'(您是否缺少使用指令或程序集引用嗎?)C:\ Users \ alexluvsd anielle \ AppData \ Local \ Temporary Projects \ cellap \ Program.cs 18 33 cellap
沒有人知道問題是什麼?
你真的有一個'Form1'類? – 2010-07-05 23:47:07
我在哪裏可以找到? – 2010-07-05 23:48:51