【例子介绍】C# WinForm两个listBox之间的Item互相拖动
【相关图片】
【源码结构】
文件清单
└── ListBoxAllowDrop
    ├── ListBoxAllowDrop
    │   ├── bin
    │   │   └── Debug
    │   │       ├── ListBoxAllowDrop.exe
    │   │       ├── ListBoxAllowDrop.pdb
    │   │       ├── ListBoxAllowDrop.vshost.exe
    │   │       └── ListBoxAllowDrop.vshost.exe.manifest
    │   ├── Form1.cs
    │   ├── Form1.Designer.cs
    │   ├── Form1.resx
    │   ├── ListBoxAllowDrop.csproj
    │   ├── obj
    │   │   └── Debug
    │   │       ├── ListBoxAllowDrop.csproj.FileListAbsolute.txt
    │   │       ├── ListBoxAllowDrop.csproj.GenerateResource.Cache
    │   │       ├── ListBoxAllowDrop.exe
    │   │       ├── ListBoxAllowDrop.Form1.resources
    │   │       ├── ListBoxAllowDrop.pdb
    │   │       ├── ListBoxAllowDrop.Properties.Resources.resources
    │   │       └── TempPE
    │   ├── Program.cs
    │   └── Properties
    │       ├── AssemblyInfo.cs
    │       ├── Resources.Designer.cs
    │       ├── Resources.resx
    │       ├── Settings.Designer.cs
    │       └── Settings.settings
    ├── ListBoxAllowDrop.sln
    └── ListBoxAllowDrop.suo
8 directories, 22 files

 
 

 
					
				
评论