用鼠标点击datagrid中一行的任意位置,使其处于选中状态,
用mousedown
private void dataGrid1_MouseUp(object sender, System.Windows.Forms.MouseEventArgs e)
{
//System.Drawing.Point pt = new Point(e.X, e.Y);
DataGrid.HitTestInfo hti = dataGrid1.HitTest(e.X, e.Y);
if(hti.Type == DataGrid.HitTestType.Cell)
{
dataGrid1.CurrentCell = new DataGridCell(hti.Row, hti.Column);
dataGrid1.Select(hti.Row);
}
}
用了这段代码,你可以点击datagrid中的任何一列,都会选中此行。