C# ListView添加DragDrop
先建立好ListView,ImageList,
然后编写一个比较类
在就是添加DragDrop事件了
具体实现看代码吧
- public partial class Form1 : Form
- {
- public Form1()
- {
- InitializeComponent();
- InitializeListView();
- }
- // 初始化listView1.
- private void InitializeListView()
- {
- listView1.ListViewItemSorter = new ListViewIndexComparer();
- //初始化插入标记
- listView1.InsertionMark.Color = Color.Red;
- //
- listView1.AllowDrop = true;
- }
- // 当一个项目拖拽是启动拖拽操作
- private void listView1_ItemDrag(object sender, ItemDragEventArgs e)
- {
- listView1.DoDragDrop(e.Item, DragDropEffects.Move);
- }
- private void listView1_DragEnter(object sender, DragEventArgs e)
- {
- e.Effect = e.AllowedEffect;
- }
- //像拖拽项目一样移动插入标记
- private void listView1_DragOver(object sender, DragEventArgs e)
- {
- // 获得鼠标坐标
- Point point = listView1.PointToClient(new Point(e.X, e.Y));
- // 返回离鼠标最近的项目的索引
- int index = listView1.InsertionMark.NearestIndex(point);
- // 确定光标不在拖拽项目上
- if (index > -1)
- {
- Rectangle itemBounds = listView1.GetItemRect(index);
- if (point.X > itemBounds.Left + (itemBounds.Width / 2))
- {
- listView1.InsertionMark.AppearsAfterItem = true;
- }
- else
- {
- listView1.InsertionMark.AppearsAfterItem = false;
- }
- }
- listView1.InsertionMark.Index = index;
- }
- // 当鼠标离开控件时移除插入标记
- private void listView1_DragLeave(object sender, EventArgs e)
- {
- listView1.InsertionMark.Index = -1;
- }
- // 将项目移到插入标记所在的位置
- private void listView1_DragDrop(object sender, DragEventArgs e)
- {
- // 返回插入标记的索引值
- int index = listView1.InsertionMark.Index;
- // 如果插入标记不可见,则退出.
- if (index == -1)
- {
- return;
- }
- // 如果插入标记在项目的右面,使目标索引值加一
- if (listView1.InsertionMark.AppearsAfterItem)
- {
- index++;
- }
- // 返回拖拽项
- ListViewItem item = (ListViewItem)e.Data.GetData(typeof(ListViewItem));
- //在目标索引位置插入一个拖拽项目的副本
- listView1.Items.Insert(index, (ListViewItem)item.Clone());
- // 移除拖拽项目的原文件
- listView1.Items.Remove(item);
- }
- // 对ListView里的各项根据索引进行排序
- private class ListViewIndexComparer : System.Collections.IComparer
- {
- public int Compare(object x, object y)
- {
- return ((ListViewItem)x).Index - ((ListViewItem)y).Index;
- }
- }
- }
- http://blog.csdn.net/lilongherolilong/article/details/6689109
C# ListView添加DragDrop的更多相关文章
- 仿喜马拉雅实现ListView添加头布局和脚布局
ListView添加头布局和脚布局 之前学习喜马拉雅的时候做的一个小Demo,贴出来,供大家学习参考: 如果我们当前的页面有多个接口.多种布局的话,我们一般的选择无非就是1.多布局:2.各种复杂滑动 ...
- ListView添加项目带序列
ListView添加项目带序列 function AddSelItems(listview1:TListView;ListView2:TListView):Boolean;var s: st ...
- 为ListView添加头和脚
转自:https://software.intel.com/zh-cn/blogs/2014/12/15/android-listview-addheaderview-addfooterview ...
- 自定义listView添加滑动删除功能
今天研究了一下android里面的手势,结合昨天学习的自定义View,做了一个自定义的listview,继承自listView,添加了条目的滑动手势操作,滑动后出现一个删除按钮,点击删除按钮,触发一个 ...
- Android之listview添加数据篇
一.ListView: 1. ListView通常有两个职责: 1.向布局填充数据 2.处理选择点击等操作 2.ListView的创建需要3个元素: 1. ListView中的每一列的View. 2. ...
- Android在listview添加checkbox实现单选多选操作问题(转)
转自:http://yangshen998.iteye.com/blog/1310183 在Android某些开发需求当中,有时候需要在listveiw中加入checkbox实现单选,多选操作.表面上 ...
- 【WinForm】线程中向listview添加数据
在使用listview的时候,因为处理的数据较多,为防止在处理数据时出现假死的状态出现卡的情况,我们使用委托进行处理添加数据 定义委托 private delegate void AddListVie ...
- Android在listview添加checkbox实现单选多选操作问题
android根据View的不同状态更换不同的背景http://www.eoeandroid.com/thread-198029-1-1.html android 模仿朋友网推出的菜单效果[改进版]h ...
- ListView添加图片文字项
1)listview 控件 结合 imagelist 控件 实现类似效果. 2)添加 imagelist 控件 images 属性,点击后面的... 添加相应图片. 3)点listview,查看其属性 ...
随机推荐
- hdu 4609: 3-idiots (FFT)
题目链接 题意:从N个数中,选出三个两两不同的数,求这三个数能够作为一个三角形的三边长的概率. 题解:用一个数组num[]记录大小为 i 的数出现的次数,通过 num[] 卷 num[] 得到 num ...
- 7,HashMap
一,HashMap简介 1,HashMap 是一个散列表,它存储的内容是键值对(key-value)映射. 2,HashMap 继承于AbstractMap,实现了Map.Cloneable.java ...
- Oracle的优化
Oracle优化:物理优化和逻辑优化.物理优化:1):Oracle的运行环境.2):合理的使用优化器.3):合理配置Oracle实例参数4):建立合适的索引(减少IO)5):将索引数据和表数据分开在不 ...
- mysql JOIN关键字 语法
mysql JOIN关键字 语法 作用:用于根据两个或多个表中的列之间的关系,从这些表中查询数据.大理石量具 说明:数据库中的表可通过键将彼此联系起来.主键(Primary Key)是一个列,在这个列 ...
- Vim 编辑器学习笔记
参考资料: 世界上最牛的编辑器: Vim 1
- multipages-generator今日发布?!妈妈再也不用担心移动端h5网站搭建了!
本文适合的读者???? 现在在手淘,京东,今日头条,美柚等过亿用户的手机app中的,都常见h5网页,他们有更新快,灵活,便于分享和传播的特性.这里有他们中的几个h5的例子:(手淘,美柚).这些a ...
- url传输中+转为%2B取到变空格的问题
一个加密串,通过url传过来后怎么也解密不了. 原串: h1tQYMmnx7jdvowi9KnaEM5dHfamJ+rbaRnvhwhUmRAvyxpA2AGzszx5k9K0qdhiQUq7m42S ...
- 【转】C++ 模板类的声明与实现分离问题
链接如下: https://www.cnblogs.com/tonychen-tobeTopCoder/p/5199655.html
- Ta还没有分享呢,过段时间再来看看吧~ 解决办法
自己摸索出来的.只能查看以前分享的奥. 找到要查看用户的id号 利用特百度搜索工具实现检索 http://www.tebaidu.com/user--1.html 将红字部分替换为刚才复制的u ...
- 【cs231n作业笔记】一:KNN分类器
安装anaconda,下载assignment作业代码 作业代码数据集等2018版基于python3.6 下载提取码4put 本课程内容参考: cs231n官方笔记地址 贺完结!CS231n官方笔记授 ...