C#实现ListView选中项向上或向下移动的方法
更新时间:2015年06月17日 09:44:19 作者:RobinTang
这篇文章主要介绍了C#实现ListView选中项向上或向下移动的方法,通过两个按钮点击事件实现ListView选中项的上下移动功能,需要的朋友可以参考下
本文实例讲述了C#实现ListView选中项向上或向下移动的方法。分享给大家供大家参考。具体实现方法如下:
private void buttonUp_Click(object sender, EventArgs e) { if (listView.SelectedItems.Count > 0 && listView.SelectedItems[0].Index != 0) { listView.BeginUpdate(); foreach (ListViewItem lvi in listView.SelectedItems) { ListViewItem item = lvi; int index = lvi.Index; listView.Items.RemoveAt(index); listView.Items.Insert(index - 1, item); } listView.EndUpdate(); } listView.Focus(); } private void buttonDown_Click(object sender, EventArgs e) { if (listView.SelectedItems.Count > 0 && listView.SelectedItems[listView.SelectedItems.Count - 1].Index < (listView.Items.Count-1)) { listView.BeginUpdate(); int count = listView.SelectedItems.Count; foreach (ListViewItem lvi in listView.SelectedItems) { ListViewItem item = lvi; int index = lvi.Index; listView.Items.RemoveAt(index); listView.Items.Insert(index + count, item); } listView.EndUpdate(); } listView.Focus(); }
希望本文所述对大家的C#程序设计有所帮助。
相关文章
C# 7.0之ref locals and returns(局部变量和引用返回)
这篇文章主要介绍了C# 7.0之ref locals and returns,即局部变量和引用返回,具有一定的参考价值,感兴趣的小伙伴们可以参考一下2017-03-03在WCF数据访问中使用缓存提高Winform字段中文显示速度的方法
这篇文章主要介绍了在WCF数据访问中使用缓存提高Winform字段中文显示速度的方法,是非常实用的功能,需要的朋友可以参考下2014-09-09
最新评论