C# datagridview中多个选中行checkbox同时操作

2024-11-18 02:51:17
推荐回答(3个)
回答(1):

//为“点”这个checkbox


//datagridview中checkbox的name设置为SELALL
function SelAll(theForm){
for ( i = 0 ; i < theForm.elements.length ; i ++ )
{
if ( theForm.elements[i].type == "checkbox" && theForm.elements[i].name != "SELALL" )
{
theForm.elements[i].checked = ! theForm.elements[i].checked ;
}
}
}

回答(2):

datagridview1的属性中multiselect为true

回答(3):

说来话长,已经私信你了,具体聊