vb.net DataGridView中粘贴的问题解决-还是有问题待解决

本文探讨了在VB.NET中遇到的DataGridView控件粘贴问题,并分享了解决方案的代码片段,但指出仍有未解决的问题待进一步探讨。
摘要由CSDN通过智能技术生成

今天晚上没事就给倒腾一下这个在DGV中的粘贴问题。以下是代码:

Public Class Form1

    Private Sub DataGridView1_CellClick(sender As Object, e As System.Windows.Forms.DataGridViewCellEventArgs) Handles DataGridView1.CellClick
        TextBox1.Text = "THIS IS " & IsNothing(DataGridView1.CurrentCell.Value)
        If IsNothing(DataGridView1.CurrentCell.Value) = False Then
            Dim L As String = DataGridView1.CurrentCell.Value.ToString
            For I As Int16 = 0 To L.Length - 1
                R.Text = Asc(L(I)) & vbCrLf
            Next
        Else
            R.Text = ""
        End If
    End Sub

    Private Sub DataGridView1_KeyUp(sender As Object, e As System.Windows.Forms.KeyEventArgs) Handles DataGridView1.KeyUp
        If e.Control And e.KeyCode = Keys.V Then
            If Clipboard.GetText <> "" Then
                Dim s() As String
                s = Clipboard.GetText.ToString.Sp
假设有一个 DataGridView 名为 dgv1,其有多个单元格被选。现在需要将这些选的单元格的数据复制到其他选的单元格。以下是一个详细的实现过程: 1. 在 Form_Load 事件添加以下代码,启用 DataGridView 的多选模式: ``` dgv1.MultiSelect = True dgv1.SelectionMode = DataGridViewSelectionMode.CellSelect ``` 2. 在 DataGridView 的 CellMouseDown 事件添加以下代码,用于记录下选的单元格的位置信息: ``` Private selectedCells As New List(Of DataGridViewCell) Private Sub dgv1_CellMouseDown(sender As Object, e As DataGridViewCellMouseEventArgs) Handles dgv1.CellMouseDown If e.Button = MouseButtons.Left AndAlso e.RowIndex >= 0 AndAlso e.ColumnIndex >= 0 Then selectedCells.Clear() For Each cell As DataGridViewCell In dgv1.SelectedCells selectedCells.Add(cell) Next selectedCells.Add(dgv1(e.ColumnIndex, e.RowIndex)) End If End Sub ``` 3. 在 DataGridView 的 CellMouseUp 事件添加以下代码,用于将选的单元格的数据复制到其他选的单元格: ``` Private Sub dgv1_CellMouseUp(sender As Object, e As DataGridViewCellMouseEventArgs) Handles dgv1.CellMouseUp If e.Button = MouseButtons.Left AndAlso e.RowIndex >= 0 AndAlso e.ColumnIndex >= 0 AndAlso selectedCells.Count > 1 Then Dim sourceCells(selectedCells.Count - 1) As String Dim sourceIndex As Integer = 0 For Each cell As DataGridViewCell In selectedCells sourceCells(sourceIndex) = cell.Value.ToString() sourceIndex += 1 Next Dim destCells As New List(Of DataGridViewCell) For Each cell As DataGridViewCell In dgv1.SelectedCells If Not selectedCells.Contains(cell) Then destCells.Add(cell) End If Next If sourceCells.Length = destCells.Count Then Dim destIndex As Integer = 0 For Each cell As DataGridViewCell In destCells cell.Value = sourceCells(destIndex) destIndex += 1 Next Else MessageBox.Show("The number of selected source cells doesn't match the number of selected destination cells.") End If End If End Sub ``` 以上代码,我们首先判断是否按下了左键并且选了至少两个单元格,然后获取当前鼠标点击的单元格作为源单元格。然后将选的源单元格的数据存储到一个字符串数组 sourceCells 。接下来,遍历 DataGridView 除了选的源单元格之外的其他选单元格,并将其添加到 destCells 列表。然后判断源单元格的数量是否和目标单元格的数量相等,如果相等,则将源单元格的数据复制到目标单元格,否则弹出一个提示框。 这样就实现了从 DataGridView 选定的多个单元格的数据复制到其他选的单元格的功能。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值