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

2024年11月18日 02:51
有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):

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