c# checkbox取消勾选后值会跟着不见
inta;string[]b=newstring[6];stringd="";privatevoidcheckBox_CheckedChanged(objectsende...
int a;
string []b=new string[6];
string d = "";
private void checkBox_CheckedChanged(object sender, EventArgs e)
{
CheckBox c=(CheckBox)sender ;
if (c.Checked==true)
{
a++;
string b=c.Text;
d=textBox1 .Text +=b+" ";
}
else
a--;
if(a>6)
{
MessageBox.Show ("最多勾选6个");
c.Checked = false;
string[] p = textBox1 .Text .Split (' ');
p[6] = " ";
}
}
}
}
在第七个勾选后会跳出出错的视窗,但textbox的值还是会出现第七个所勾选的值 展开
string []b=new string[6];
string d = "";
private void checkBox_CheckedChanged(object sender, EventArgs e)
{
CheckBox c=(CheckBox)sender ;
if (c.Checked==true)
{
a++;
string b=c.Text;
d=textBox1 .Text +=b+" ";
}
else
a--;
if(a>6)
{
MessageBox.Show ("最多勾选6个");
c.Checked = false;
string[] p = textBox1 .Text .Split (' ');
p[6] = " ";
}
}
}
}
在第七个勾选后会跳出出错的视窗,但textbox的值还是会出现第七个所勾选的值 展开
1个回答
展开全部
添加checkbox
protected void Page_Load(object sender, EventArgs e)
{
CheckBox chk = new CheckBox();
chk.Text = "testall"; // 这里可以换成数据库的内容
chk.CheckedChanged += new EventHandler(chk_CheckedChanged);
chk.AutoPostBack = true;
Page.Form.Controls.Add(chk);
for (int i = 0; i < 10; i++)
{
CheckBox chk2 = new CheckBox();
chk2.Text = "test" + i.ToString(); // 这里可以换成数据库的内容
chk2.Checked = (i % 3 == 0); // 这里可以换成数据库的内容
Page.Form.Controls.Add(chk2);
}
}
void chk_CheckedChanged(object sender, EventArgs e)
{
CheckBox all = sender as CheckBox;
foreach(Control ctl in Page.Form.Controls)
{
if (ctl is CheckBox)
{
CheckBox chk = ctl as CheckBox;
chk.Checked = all.Checked;
}
}
}
protected void Page_Load(object sender, EventArgs e)
{
CheckBox chk = new CheckBox();
chk.Text = "testall"; // 这里可以换成数据库的内容
chk.CheckedChanged += new EventHandler(chk_CheckedChanged);
chk.AutoPostBack = true;
Page.Form.Controls.Add(chk);
for (int i = 0; i < 10; i++)
{
CheckBox chk2 = new CheckBox();
chk2.Text = "test" + i.ToString(); // 这里可以换成数据库的内容
chk2.Checked = (i % 3 == 0); // 这里可以换成数据库的内容
Page.Form.Controls.Add(chk2);
}
}
void chk_CheckedChanged(object sender, EventArgs e)
{
CheckBox all = sender as CheckBox;
foreach(Control ctl in Page.Form.Controls)
{
if (ctl is CheckBox)
{
CheckBox chk = ctl as CheckBox;
chk.Checked = all.Checked;
}
}
}
追问
Page 是要宣告什么变数 他说Page 不存在内容中
我只是要把勾选超过六个后他会把第七个取消勾选 但是第七个所勾选的值
还是会跑到Textbox 里
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询