找不到类型或命名空间名称“Form1”(是否缺少 using 指令或程序集引用?)
usingSystem;usingSystem.Collections.Generic;usingSystem.ComponentModel;usingSystem.Da...
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
namespace WindowFormsApplication1
{
public partial class Form1 : Form
{
private string struser = "";
public string user { get { return struser; } set { struser = value; } }
public Form1()
{
InitializeComponent();
}
private void Form1_Load(object sender, EventArgs e)
{ tsslUser.Text = "当前用户:" + user; }
private void timer1_Tick(object sender, EventArgs e)
{
time.Text = "当前时间:" + DateTime.Now.Year + "-" + DateTime.Now.Month + "-" +
DateTime.Now.Day + " " + DateTime.Now.Hour + ":" + DateTime.Now.Minute + ":" +
DateTime.Now.Second;
}
private void Form1Main_FormClosing(object sender, FormClosingEventArgs e)
{
if (MessageBox.Show("您是否真的退出系统", "提示", MessageBoxButtons.YesNo,
MessageBoxIcon.Question) == DialogResult.Yes)
{ System.Environment.Exit(0); }
else
{
e.Cancel = true;
}
}
private void Form1_KeyDown(object sender, KeyEventArgs e)
{
switch (e.KeyCode)
{
case Keys.Escape:
if (MessageBox.Show("您是否真的退出系统", "提示", MessageBoxButtons.YesNo,
MessageBoxIcon.Question) == DialogResult.Yes) { System.Environment.Exit(0); } break;
}
}
}
} 展开
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
namespace WindowFormsApplication1
{
public partial class Form1 : Form
{
private string struser = "";
public string user { get { return struser; } set { struser = value; } }
public Form1()
{
InitializeComponent();
}
private void Form1_Load(object sender, EventArgs e)
{ tsslUser.Text = "当前用户:" + user; }
private void timer1_Tick(object sender, EventArgs e)
{
time.Text = "当前时间:" + DateTime.Now.Year + "-" + DateTime.Now.Month + "-" +
DateTime.Now.Day + " " + DateTime.Now.Hour + ":" + DateTime.Now.Minute + ":" +
DateTime.Now.Second;
}
private void Form1Main_FormClosing(object sender, FormClosingEventArgs e)
{
if (MessageBox.Show("您是否真的退出系统", "提示", MessageBoxButtons.YesNo,
MessageBoxIcon.Question) == DialogResult.Yes)
{ System.Environment.Exit(0); }
else
{
e.Cancel = true;
}
}
private void Form1_KeyDown(object sender, KeyEventArgs e)
{
switch (e.KeyCode)
{
case Keys.Escape:
if (MessageBox.Show("您是否真的退出系统", "提示", MessageBoxButtons.YesNo,
MessageBoxIcon.Question) == DialogResult.Yes) { System.Environment.Exit(0); } break;
}
}
}
} 展开
6个回答
展开全部
解决方案中有个Program.cs类,是程序的入口。
你查看一下Program.cs类的命名空间是不是和你这个Form1的命名空间一样。
因为命名空间名不一样,所以找不到这个Form1类。
namespace WindowFormsApplication1
你查看一下Program.cs类的命名空间是不是和你这个Form1的命名空间一样。
因为命名空间名不一样,所以找不到这个Form1类。
namespace WindowFormsApplication1
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
你是把这个Form1单独生成类库还是放在你的项目里,如果放在项目里,看看是不是把这个Form1放在了某个命名空间里,如果你的Form1声明前面有namespace之类的标记,就是你把它放在了子命名空间里,这样你就得在使用Form1的代码文件的第一行写using 项目名.命名空间名或者用全路径:项目名.命名空间名.Form1
如果你是单独生成类库,就得“项目 - 添加引用”来引用这个类库。
如果你是单独生成类库,就得“项目 - 添加引用”来引用这个类库。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
你描述的问题缺少引用,using System,Windows,Forms;
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
namespace WindowFormsApplication1
把这改成 namespace Form1试试
把这改成 namespace Form1试试
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询