您的位置:首页 > 其它

DataGridView鼠标的拖放操作及单元格编辑结束数据复制与单元格单击数据粘贴及两个DataGridView相互拖放操作

2013-10-24 07:51 519 查看
昨天观世音菩萨出家纪念日,昨晚上本想发布的,一忙其他事情给忘了,今早补上,以资纪念.2013年10月23日:二〇一三年九月十九

DataGridView鼠标的拖放操作及单元格编辑结束数据复制与单元格单击数据粘贴及两个DataGridView相互拖放操作
        private void DataGridView1_DragEnter(object sender, DragEventArgs e)
        {
            e.Effect = (e.Data.GetDataPresent(typeof(System.String)) && DataGridView1.Rows.Count > 0)
                ? DragDropEffects.Copy : DragDropEffects.None;
        }

        private void DataGridView1_DragDrop(object sender, DragEventArgs e)
        {

                if (e.Data.GetDataPresent(typeof(System.String)) && DataGridView1.Rows.Count > 0)
                {
                    Point 二维面 = DataGridView1.PointToClient(new Point(e.X, e.Y));
                    DataGridView1.Rows[DataGridView1.HitTest(二维面.X, 二维面.Y).RowIndex].Cells[DataGridView1.HitTest(二维面.X, 二维面.Y).ColumnIndex].Value = (System.String)e.Data.GetData(typeof(System.String));
                }
        }

        private void DataGridView1_CellEndEdit(object sender, DataGridViewCellEventArgs e)
        {
                string 单元值 = "";
                if (DataGridView1.Rows[e.RowIndex].Cells[e.ColumnIndex].Value != null)
                    单元值 = DataGridView1.Rows[e.RowIndex].Cells[e.ColumnIndex].Value.ToString();
                DataGridView1.DoDragDrop(单元值, DragDropEffects.Copy);
        }

        private void DataGridView2_CellMouseDown(object sender, DataGridViewCellMouseEventArgs e)
        {
            DataGridView2.DoDragDrop(DataGridView2.Rows[e.RowIndex].Cells[e.ColumnIndex].Value.ToString(), DragDropEffects.Copy);
        }

        private void DataGridView2_DragDrop(object sender, DragEventArgs e)
        {
                if (e.Data.GetDataPresent(typeof(System.String)) && DataGridView2.Rows.Count > 0)
                {
                    Point 二维面 = DataGridView2.PointToClient(new Point(e.X, e.Y));
                        DataGridView2.Rows[DataGridView2.HitTest(二维面.X, 二维面.Y).RowIndex].Cells[DataGridView2.HitTest(二维面.X, 二维面.Y).ColumnIndex].Value = (System.String)e.Data.GetData(typeof(System.String));
                }
        }

        private void DataGridView2_DragEnter(object sender, DragEventArgs e)
        {
            e.Effect = (e.Data.GetDataPresent(typeof(System.String)))
                ? DragDropEffects.Copy : DragDropEffects.None;
        }

        private void DataGridView2_CellEndEdit(object sender, DataGridViewCellEventArgs e)
        {
                string 单元值 = DataGridView2.Rows[e.RowIndex].Cells[e.ColumnIndex].Value.ToString();
                DataGridView2.DoDragDrop(单元值, DragDropEffects.Copy);
        }
最后顺便说一下,如果richTextBox控件的属性EeableAutoDragDrop设置为True则可以拖放数据到DataGridView中。
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: 
相关文章推荐