用C#实现在ListBox中拖动排序

时间:2021-09-29 15:46:21
用C#实现在ListBox中拖动排序

现在在C#中处理有关的拖放操作变得比以前方便多了,现在就已一个例子说明,这个例子演示了通过鼠标的拖动在一个ListBox中进行排序操作。

相关源码如下:

用C#实现在ListBox中拖动排序using System;
用C#实现在ListBox中拖动排序
using System.Drawing;
用C#实现在ListBox中拖动排序
using System.Collections;
用C#实现在ListBox中拖动排序
using System.ComponentModel;
用C#实现在ListBox中拖动排序
using System.Windows.Forms;
用C#实现在ListBox中拖动排序
using System.Data;
用C#实现在ListBox中拖动排序
用C#实现在ListBox中拖动排序
namespace WindowsApplication2
用C#实现在ListBox中拖动排序用C#实现在ListBox中拖动排序
{
用C#实现在ListBox中拖动排序    
public class Form1 : System.Windows.Forms.Form
用C#实现在ListBox中拖动排序用C#实现在ListBox中拖动排序    
{
用C#实现在ListBox中拖动排序        
private System.Windows.Forms.ListBox listBox1;
用C#实现在ListBox中拖动排序        
int indexofsource;//拖动的起始索引
用C#实现在ListBox中拖动排序
        int indexoftarget; //拖动的结束索引
用C#实现在ListBox中拖动排序
        private System.ComponentModel.Container components = null;
用C#实现在ListBox中拖动排序        
public Form1()
用C#实现在ListBox中拖动排序用C#实现在ListBox中拖动排序        
{
用C#实现在ListBox中拖动排序            InitializeComponent();
用C#实现在ListBox中拖动排序        }

用C#实现在ListBox中拖动排序
用C#实现在ListBox中拖动排序        
protected override void Dispose(bool disposing)
用C#实现在ListBox中拖动排序用C#实现在ListBox中拖动排序        
{
用C#实现在ListBox中拖动排序            
if (disposing)
用C#实现在ListBox中拖动排序用C#实现在ListBox中拖动排序            
{
用C#实现在ListBox中拖动排序                
if (components != null)
用C#实现在ListBox中拖动排序用C#实现在ListBox中拖动排序                
{
用C#实现在ListBox中拖动排序                    components.Dispose();
用C#实现在ListBox中拖动排序                }

用C#实现在ListBox中拖动排序            }

用C#实现在ListBox中拖动排序            
base.Dispose(disposing);
用C#实现在ListBox中拖动排序        }

用C#实现在ListBox中拖动排序
用C#实现在ListBox中拖动排序用C#实现在ListBox中拖动排序        
Windows 窗体设计器生成的代码
用C#实现在ListBox中拖动排序
用C#实现在ListBox中拖动排序        [STAThread]
用C#实现在ListBox中拖动排序        
static void Main()
用C#实现在ListBox中拖动排序用C#实现在ListBox中拖动排序        
{
用C#实现在ListBox中拖动排序            Application.Run(
new Form1());
用C#实现在ListBox中拖动排序        }

用C#实现在ListBox中拖动排序
用C#实现在ListBox中拖动排序        
private void listBox1_MouseDown(object sender, System.Windows.Forms.MouseEventArgs e)
用C#实现在ListBox中拖动排序用C#实现在ListBox中拖动排序        
{
用C#实现在ListBox中拖动排序            indexofsource 
= ((ListBox)sender).IndexFromPoint(e.X, e.Y);
用C#实现在ListBox中拖动排序            
if (indexofsource != ListBox.NoMatches)
用C#实现在ListBox中拖动排序用C#实现在ListBox中拖动排序            
{
用C#实现在ListBox中拖动排序                ((ListBox)sender).DoDragDrop(((ListBox)sender).Items[indexofsource].ToString(), DragDropEffects.All);
用C#实现在ListBox中拖动排序            }

用C#实现在ListBox中拖动排序        }

用C#实现在ListBox中拖动排序
用C#实现在ListBox中拖动排序        
private void listBox1_DragOver(object sender, System.Windows.Forms.DragEventArgs e)
用C#实现在ListBox中拖动排序用C#实现在ListBox中拖动排序        
//拖动源和放置的目的地一定是一个ListBox
用C#实现在ListBox中拖动排序
            if (e.Data.GetDataPresent(typeof(System.String)) && ((ListBox)sender).Equals(listBox1))
用C#实现在ListBox中拖动排序用C#实现在ListBox中拖动排序            
{
用C#实现在ListBox中拖动排序                e.Effect 
= DragDropEffects.Move;
用C#实现在ListBox中拖动排序            }

用C#实现在ListBox中拖动排序            
else
用C#实现在ListBox中拖动排序                e.Effect 
= DragDropEffects.None;
用C#实现在ListBox中拖动排序        }

用C#实现在ListBox中拖动排序
用C#实现在ListBox中拖动排序        
private void listBox1_DragDrop(object sender, System.Windows.Forms.DragEventArgs e)
用C#实现在ListBox中拖动排序用C#实现在ListBox中拖动排序        
{
用C#实现在ListBox中拖动排序            ListBox listbox 
= (ListBox)sender;
用C#实现在ListBox中拖动排序            indexoftarget 
= listbox.IndexFromPoint(listbox.PointToClient(new Point(e.X, e.Y)));
用C#实现在ListBox中拖动排序            
if (indexoftarget != ListBox.NoMatches)
用C#实现在ListBox中拖动排序用C#实现在ListBox中拖动排序            
{
用C#实现在ListBox中拖动排序                
string temp = listbox.Items[indexoftarget].ToString();
用C#实现在ListBox中拖动排序                listbox.Items[indexoftarget] 
= listbox.Items[indexofsource];
用C#实现在ListBox中拖动排序                listbox.Items[indexofsource] 
= temp;
用C#实现在ListBox中拖动排序                listbox.SelectedIndex 
= indexoftarget;
用C#实现在ListBox中拖动排序            }

用C#实现在ListBox中拖动排序        }

用C#实现在ListBox中拖动排序    }

用C#实现在ListBox中拖动排序
用C#实现在ListBox中拖动排序}

好了,现在我们的目标达到了。我们还可以通过处理QueryContinueDrag、GiveFeedback事件获得更多的功能。