如何获取事件以向函数发送参数?所以我可以同时使用 dataGridView1_MouseMove 函数来拥有 dataGridView1 和 dataGridView2 吗?
private void dataGridView1_MouseMove(object sender, MouseEventArgs e)
{
if ((e.Button & MouseButtons.Left) == MouseButtons.Left)
{
// If the mouse moves outside the rectangle, start the drag.
if (dragBoxFromMouseDown != Rectangle.Empty &&
!dragBoxFromMouseDown.Contains(e.X, e.Y))
{
// Proceed with the drag and drop, passing in the list item.
DragDropEffects dropEffect = dataGridView1.DoDragDrop(
dataGridView1.Rows[rowIndexFromMouseDown],
DragDropEffects.Move);
}
}
}
我目前正在使用这个函数以及其他一些函数来允许拖放 dataGridView1 中的行,我如何对 dataGridView2 使用相同的函数?