<small id='rdsve'></small><noframes id='rdsve'>

  1. <i id='rdsve'><tr id='rdsve'><dt id='rdsve'><q id='rdsve'><span id='rdsve'><b id='rdsve'><form id='rdsve'><ins id='rdsve'></ins><ul id='rdsve'></ul><sub id='rdsve'></sub></form><legend id='rdsve'></legend><bdo id='rdsve'><pre id='rdsve'><center id='rdsve'></center></pre></bdo></b><th id='rdsve'></th></span></q></dt></tr></i><div id='rdsve'><tfoot id='rdsve'></tfoot><dl id='rdsve'><fieldset id='rdsve'></fieldset></dl></div>

      <bdo id='rdsve'></bdo><ul id='rdsve'></ul>
    <tfoot id='rdsve'></tfoot>
    1. <legend id='rdsve'><style id='rdsve'><dir id='rdsve'><q id='rdsve'></q></dir></style></legend>

      使用拖放重新排序winforms列表框?

      时间:2023-10-07

      <small id='wE4w8'></small><noframes id='wE4w8'>

      • <i id='wE4w8'><tr id='wE4w8'><dt id='wE4w8'><q id='wE4w8'><span id='wE4w8'><b id='wE4w8'><form id='wE4w8'><ins id='wE4w8'></ins><ul id='wE4w8'></ul><sub id='wE4w8'></sub></form><legend id='wE4w8'></legend><bdo id='wE4w8'><pre id='wE4w8'><center id='wE4w8'></center></pre></bdo></b><th id='wE4w8'></th></span></q></dt></tr></i><div id='wE4w8'><tfoot id='wE4w8'></tfoot><dl id='wE4w8'><fieldset id='wE4w8'></fieldset></dl></div>

          <tbody id='wE4w8'></tbody>

        <tfoot id='wE4w8'></tfoot><legend id='wE4w8'><style id='wE4w8'><dir id='wE4w8'><q id='wE4w8'></q></dir></style></legend>
              <bdo id='wE4w8'></bdo><ul id='wE4w8'></ul>
              • 本文介绍了使用拖放重新排序winforms列表框?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                问题描述

                这是一个简单的过程吗?

                Is this a simple process?

                我只是为内部工具编写一个快速的 hacky 用户界面.

                I'm only writing a quick hacky UI for an internal tool.

                我不想花太多时间在上面.

                I don't want to spend an age on it.

                推荐答案

                这是一个快速而肮脏的应用程序.基本上我创建了一个带有按钮和列表框的表单.单击按钮时,ListBox 将填充接下来 20 天的日期(必须使用某些东西来进行测试).然后,它允许在 ListBox 中拖放以进行重新排序:

                Here's a quick down and dirty app. Basically I created a Form with a button and a ListBox. On button click, the ListBox gets populated with the date of the next 20 days (had to use something just for testing). Then, it allows drag and drop within the ListBox for reordering:

                    public partial class Form1 : Form
                    {
                        public Form1()
                        {
                            InitializeComponent();
                            this.listBox1.AllowDrop = true;
                        }
                
                        private void button1_Click(object sender, EventArgs e)
                        {
                            for (int i = 0; i <= 20; i++)
                            {
                                this.listBox1.Items.Add(DateTime.Now.AddDays(i));
                            }
                        }
                
                        private void listBox1_MouseDown(object sender, MouseEventArgs e)
                        {
                            if (this.listBox1.SelectedItem == null) return;
                            this.listBox1.DoDragDrop(this.listBox1.SelectedItem, DragDropEffects.Move);
                        }
                
                        private void listBox1_DragOver(object sender, DragEventArgs e)
                        {
                            e.Effect = DragDropEffects.Move;
                        }
                
                        private void listBox1_DragDrop(object sender, DragEventArgs e)
                        {
                            Point point = listBox1.PointToClient(new Point(e.X, e.Y));
                            int index = this.listBox1.IndexFromPoint(point);
                            if (index < 0) index = this.listBox1.Items.Count-1;
                            object data = e.Data.GetData(typeof(DateTime));
                            this.listBox1.Items.Remove(data);
                            this.listBox1.Items.Insert(index, data);
                        }
                

                这篇关于使用拖放重新排序winforms列表框?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                上一篇:获取不同语言的系统时区 下一篇:C#:从列表中填充列表框的最简单方法

                相关文章

              • <legend id='bnAXi'><style id='bnAXi'><dir id='bnAXi'><q id='bnAXi'></q></dir></style></legend>
                <tfoot id='bnAXi'></tfoot>
              • <i id='bnAXi'><tr id='bnAXi'><dt id='bnAXi'><q id='bnAXi'><span id='bnAXi'><b id='bnAXi'><form id='bnAXi'><ins id='bnAXi'></ins><ul id='bnAXi'></ul><sub id='bnAXi'></sub></form><legend id='bnAXi'></legend><bdo id='bnAXi'><pre id='bnAXi'><center id='bnAXi'></center></pre></bdo></b><th id='bnAXi'></th></span></q></dt></tr></i><div id='bnAXi'><tfoot id='bnAXi'></tfoot><dl id='bnAXi'><fieldset id='bnAXi'></fieldset></dl></div>

                  <small id='bnAXi'></small><noframes id='bnAXi'>

                      <bdo id='bnAXi'></bdo><ul id='bnAXi'></ul>