DataGrid里选中Row的方法

DATAGRID里没有提供这个属性,所以只能靠自己来实现了.只需要加一小段代码即可:

private void dataGrid1_MouseUp(object sender, System.Windows.Forms.MouseEventArgs e)
{
if (this.dataGrid1.CurrentRowIndex>=0)
    this.dataGrid1.Select(this.dataGrid1.CurrentRowIndex);
}

你可能感兴趣的:(Microsoft)