хочу перетащить данные с одной ячейки в другую.
private void dataGridViewInOut_DragDrop(object sender, DragEventArgs e)
{
DataGridViewRow row = e.Data.GetData(typeof(DataGridViewRow)) as DataGridViewRow;
if (row != null)
{
//for debug
MessageBox.Show(row.Cells[1].Value.ToString());
//не работает
dataGridViewInOut.CurrentCell.Value = row.Cells[1].Value;
}
}
вопрос как указать ячейку над которой зависла мышь, чтобы бросить туда данные.