Private Sub DataCopyToGrid() '判断剪切板中是否存在内容 If Clipboard.ContainsText Then Dim str = Clipboard.GetText() Dim array = Strings.Split(str, vbCrLf) Dim selerow As Integer = Me.Grid.CurrentCell.RowIndex Dim selecom As Integer = Me.Grid.CurrentCell.ColumnIn…
使用ListView模仿Windows系统的资源管理器界面,实现文件(夹)的浏览.重命名.删除及查询等功能,主要功能界面展示如下: 1.MainForm.cs及MainForm.Designer.cs using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System…