时间:2021-05-20
我们先来看下运行效果图
Form1.cs代码:
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); } } private void listBox2_SelectedIndexChanged(object sender, EventArgs e) { } private void button1_Click(object sender, EventArgs e) { //单选,无法实现多选 //string str = this.listBox1.Text.Trim().ToString(); //if (listBox1.Items.Contains(str)) //{ // listBox1.Items.Remove(str); // listBox2.Items.Add(str); //} for (int i=0;i<listBox1.SelectedIndices.Count;i++) { listBox2.Items.Add(listBox1.Items[listBox1.SelectedIndices[i]]); listBox1.Items.RemoveAt(listBox1.SelectedIndices[i]); i--; } } private void button2_Click(object sender, EventArgs e) { for (int i = 0; i < listBox2.SelectedIndices.Count; i++) { listBox1.Items.Add(listBox2.Items[listBox2.SelectedIndices[i]]); listBox2.Items.RemoveAt(listBox2.SelectedIndices[i]); i--; } } private void button3_Click(object sender, EventArgs e) { listBox2.Items.AddRange(listBox1.Items); listBox1.Items.Clear(); } private void button4_Click(object sender, EventArgs e) { listBox1.Items.AddRange(listBox2.Items); listBox2.Items.Clear(); } }}大家可以测试运行下,有其他问题可以在下方的留言区讨论,感谢大家对的支持。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
本文实例讲述了C#实现让ListBox适应最大Item宽度的方法。分享给大家供大家参考。具体实现方法如下:privatevoidbutton1_Click(ob
本文实例讲述了C#遍历系统进程的方法。分享给大家供大家参考。具体实现方法如下:建立一个listBox将进程名称遍历进去this.listBox1.Items.C
本文实例讲述了C#保存listbox中数据到文本文件的方法。分享给大家供大家参考。具体实现方法如下:privatevoidSaveLstToTxt(ListBo
本文实例讲述了C#实现DevGrid拖拽移动行的方法。分享给大家供大家参考。具体如下:完整实例代码点击此处本站下载。拖拽时带行截图效果实现代码如下://////
本文实例讲述了C#读取文本文件到listbox组件的方法。分享给大家供大家参考。具体实现方法如下:privatevoidAddTxtToLst(stringpa