1、winform下datagrid的行使用ctrl键就可以多选啊!2、使用datagrid的IsSelected方法判断选中的行
if (this.dataGrid1.IsSelected(i) == true)//datagrid选中的行
{
   处理
}