• 大小: 0.25M
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2020-12-14
  • 语言: C#
  • 标签: C#  listbox  

资源简介

C#ListBox中的Item拖拽,实现多选移动


资源截图

代码片段和文件信息

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using System.Collections;

namespace MoveItem
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }
        ArrayList list = new ArrayList();
        private void listBox1_SelectedIndexChanged(object sender EventArgs e)
        {

        }

        private void Form1_Load(object sender EventArgs e)
        {
            for (int i = 1; i <= 10; i++)
            {
                list.Add(i);
                string s = i.ToString();
                listBox1.Items.Add(s);
      

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2018-04-16 16:29  MoveItem\
     目录           0  2018-04-16 16:30  MoveItem\.git\
     文件          22  2018-04-16 16:29  MoveItem\.git\COMMIT_EDITMSG
     文件         826  2018-04-16 16:30  MoveItem\.git\config
     文件          73  2018-04-16 16:29  MoveItem\.git\description
     文件          23  2018-04-16 16:29  MoveItem\.git\HEAD
     目录           0  2018-04-16 16:29  MoveItem\.git\hooks\
     文件         478  2018-04-16 16:29  MoveItem\.git\hooks\applypatch-msg.sample
     文件         896  2018-04-16 16:29  MoveItem\.git\hooks\commit-msg.sample
     文件        3327  2018-04-16 16:29  MoveItem\.git\hooks\fsmonitor-watchman.sample
     文件         189  2018-04-16 16:29  MoveItem\.git\hooks\post-update.sample
     文件         424  2018-04-16 16:29  MoveItem\.git\hooks\pre-applypatch.sample
     文件        1642  2018-04-16 16:29  MoveItem\.git\hooks\pre-commit.sample
     文件        1348  2018-04-16 16:29  MoveItem\.git\hooks\pre-push.sample
     文件        4898  2018-04-16 16:29  MoveItem\.git\hooks\pre-rebase.sample
     文件         544  2018-04-16 16:29  MoveItem\.git\hooks\pre-receive.sample
     文件        1239  2018-04-16 16:29  MoveItem\.git\hooks\prepare-commit-msg.sample
     文件        3610  2018-04-16 16:29  MoveItem\.git\hooks\update.sample
     文件        1423  2018-04-16 16:29  MoveItem\.git\index
     目录           0  2018-04-16 16:29  MoveItem\.git\info\
     文件         240  2018-04-16 16:29  MoveItem\.git\info\exclude
     目录           0  2018-04-16 16:29  MoveItem\.git\logs\
     文件         338  2018-04-16 16:29  MoveItem\.git\logs\HEAD
     目录           0  2018-04-16 16:30  MoveItem\.git\logs\refs\
     目录           0  2018-04-16 16:29  MoveItem\.git\logs\refs\heads\
     文件         338  2018-04-16 16:29  MoveItem\.git\logs\refs\heads\master
     目录           0  2018-04-16 16:30  MoveItem\.git\logs\refs\remotes\
     目录           0  2018-04-16 16:30  MoveItem\.git\logs\refs\remotes\origin\
     文件         140  2018-04-16 16:30  MoveItem\.git\logs\refs\remotes\origin\master
     文件         150  2018-04-16 16:29  MoveItem\.git\ms-persist.xml
     目录           0  2018-04-16 16:29  MoveItem\.git\objects\
............此处省略97个文件信息

评论

共有 条评论