c#高手看看什么问题 using System; using System.Collections.Generic; using System.ComponentModel; usi
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 WindowsApplication4
{
public partial class Form1 : Form
{
public Form1()
{
CfrmSplash frmSplash=new CfrmSplash();
frmSplash.Show();
InitializeComponent();
for(int i=1;i<=100;i++)
{
frmSplash.label2.Text=i.ToString()+"%";
frmSplash.progressBar1.Value=i;
frmSplash.Refresh();
}
frmSplash.Close();
}
private void Form1_Load(object sender, EventArgs e)
{
}
}
}
错误 CS0246: 找不到类型或命名空间名称“CfrmSplash”(是否缺少 using 指令或程序集引用?)
谁能给我修改好的 再追加5分 展开
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
namespace WindowsApplication4
{
public partial class Form1 : Form
{
public Form1()
{
CfrmSplash frmSplash=new CfrmSplash();
frmSplash.Show();
InitializeComponent();
for(int i=1;i<=100;i++)
{
frmSplash.label2.Text=i.ToString()+"%";
frmSplash.progressBar1.Value=i;
frmSplash.Refresh();
}
frmSplash.Close();
}
private void Form1_Load(object sender, EventArgs e)
{
}
}
}
错误 CS0246: 找不到类型或命名空间名称“CfrmSplash”(是否缺少 using 指令或程序集引用?)
谁能给我修改好的 再追加5分 展开
2个回答
展开全部
CfrmSplash类是自己实现的,不是系统的吧?
你这里的程序应该不完整,需要增加CfrmSplash类,实现加载进度。
CfrmSplash类也是一个Form,包含一个label2和一个progressBar1两个控件。
你这里的程序应该不完整,需要增加CfrmSplash类,实现加载进度。
CfrmSplash类也是一个Form,包含一个label2和一个progressBar1两个控件。
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询