我刚开始学C#,下面代码出现当前上下文中不存在名称“InitializeComponent”,怎么回事
usingSystem;usingSystem.Collections.Generic;usingSystem.Linq;usingSystem.Threading.Ta...
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using System.Windows.Forms;
using System.Text;
using System.Drawing;
namespace HelloWin
{
public partial class HelloFrm : Form
{
public HelloFrm()
{
InitializeComponent();
}
private void HelloFrm_Load(object sender,EventArgs e)
{
this.Text="我的第一个windows程序";
Label lblShow=new Label();
lblShow.Location=new Point(50,60);
lblShow.AutoSize=true;
lblShow.Text="本程序由 设计,欢迎使用!";
this.Controls.Add(lblShow);
}
}
static class Program
{
/// <summary>
/// 应用程序的主入口点。
/// </summary>
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new HelloFrm());
}
}
} 展开
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using System.Windows.Forms;
using System.Text;
using System.Drawing;
namespace HelloWin
{
public partial class HelloFrm : Form
{
public HelloFrm()
{
InitializeComponent();
}
private void HelloFrm_Load(object sender,EventArgs e)
{
this.Text="我的第一个windows程序";
Label lblShow=new Label();
lblShow.Location=new Point(50,60);
lblShow.AutoSize=true;
lblShow.Text="本程序由 设计,欢迎使用!";
this.Controls.Add(lblShow);
}
}
static class Program
{
/// <summary>
/// 应用程序的主入口点。
/// </summary>
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new HelloFrm());
}
}
} 展开
4个回答
展开全部
有可能是因为你这段代码是从哪里复制的,你新建的是控制台程序吗?你上面的应该是WinForm程序。
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
你少个文件
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
你是不是改名字了
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询