我有 ac# 问题。我创建了一个名为“classproject”的项目,并添加了几个表单以成功进行项目并成功运行该程序,但是我刚刚添加了另一个 Windows 表单,当我双击该表单时,它把我带到了代码视图并提出了这个:
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace WindowsFormsApplication1
{
public partial class demo : Form
{
public demo()
{
InitializeComponent();
}
private void demo_Load(object sender, EventArgs e)
{
}
}
}
现在,我的挑战是项目名称默认显示在命名空间之后,如“命名空间类项目”而不是“命名空间 WindowsFormsApplication1”。请任何人都可以帮助我,我打算做什么,因为已经尝试了所有可能的方法。即使我自己更改名称,它仍然会标记错误......有人请尽快帮助我。