当前位置:
首页 > Python基础教程 >
-
C# Winfom 中ListBox的简单用法详解
1、如何添加listBox的值
1
|
this .listBox1.Items.Add( "张晓东" ); |
2、如何判断listBox集合是否添加过
1
2
3
4
5
6
7
|
//检查添加值是否添加过 if ( this .listBox1.items.Contains( "张晓东" )){ MessageBox.show( "集合成员已添加过!" ); } else { //执行添加集合成员 } |
3、如何获取listBox选中的值
1
2
3
4
5
6
7
8
|
//判断所有选中项集合大于0 if ( this .listBox1.SelectedItems.Count > 0){ //获取选中的值 this .listBox1.SelectedItem.ToString(); } else { MessageBox.Show( "未选中listbox集合的值" ); } |
4、如何移除listBox中存在的值
1
2
|
//移除listBox集合的项 this .listBox1.Items.Remove( "张晓东" ); |
5、综合使用例子
简单实现人员从部门1转移到部门2或部门2转移到部门1
1)界面设计
2)完整源码
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
|
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; namespace WindowsForms { public partial class Form3 : Form { public Form3() { InitializeComponent(); } /// <summary> /// 添加人员到采购部门 /// </summary> /// <param name="sender"></param> /// <param name="e"></param> private void btnInsert_Click( object sender, EventArgs e) { //获取添加人的值 string peopleText = this .txtPeople.Text.Trim().ToString(); //获取listbox1的对象 ListBox list1 = this .listBox1; //判断人员是否已经添加过 if (!list1.Items.Contains(peopleText)) { list1.Items.Add(peopleText); } else { MessageBox.Show( "该人员已经添加过,无法重复添加!" ); } } /// <summary> /// 将采购人员转移到销售部门 /// </summary> /// <param name="sender"></param> /// <param name="e"></param> private void btnRightMove_Click( object sender, EventArgs e) { //获取listbox1的所有选中的项 if ( this .listBox1.SelectedItems.Count > 0) { string checkPeople = this .listBox1.SelectedItem.ToString(); //判断是否添加到listbox2 if (! this .listBox2.Items.Contains(checkPeople)) { //添加人员到listbox2中 this .listBox2.Items.Add(checkPeople); //移除listbox1中 this .listBox1.Items.Remove(checkPeople); } else { MessageBox.Show( "该人员已经转移过,无法重复转移!" ); } } else { MessageBox.Show( "未选中采购人员,无法转移销售部门!" ); } } /// <summary> /// 将销售人员转移到采购部门 /// </summary> /// <param name="sender"></param> /// <param name="e"></param> private void btnLeftMove_Click( object sender, EventArgs e) { //获取listbox2的所有选中的项 if ( this .listBox2.SelectedItems.Count > 0) { string checkPeople = this .listBox2.SelectedItem.ToString(); //判断是否添加到listbox1 if (! this .listBox1.Items.Contains(checkPeople)) { //添加人员到listbox1中 this .listBox1.Items.Add(checkPeople); //移除listbox1中 this .listBox2.Items.Remove(checkPeople); } else { MessageBox.Show( "该人员已经转移过,无法重复转移!" ); } } else { MessageBox.Show( "未选中销售人员,无法转移到采购部门!" ); } } } } |
3)界面演示
3.1)添加人员到部门1演示效果
3.2)部门1转移到部门2演示效果
3.3)部门2转移到部门1演示效果
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持脚本之家。
栏目列表
最新更新
nodejs爬虫
Python正则表达式完全指南
爬取豆瓣Top250图书数据
shp 地图文件批量添加字段
爬虫小试牛刀(爬取学校通知公告)
【python基础】函数-初识函数
【python基础】函数-返回值
HTTP请求:requests模块基础使用必知必会
Python初学者友好丨详解参数传递类型
如何有效管理爬虫流量?
SQL SERVER中递归
2个场景实例讲解GaussDB(DWS)基表统计信息估
常用的 SQL Server 关键字及其含义
动手分析SQL Server中的事务中使用的锁
openGauss内核分析:SQL by pass & 经典执行
一招教你如何高效批量导入与更新数据
天天写SQL,这些神奇的特性你知道吗?
openGauss内核分析:执行计划生成
[IM002]Navicat ODBC驱动器管理器 未发现数据
初入Sql Server 之 存储过程的简单使用
这是目前我见过最好的跨域解决方案!
减少回流与重绘
减少回流与重绘
如何使用KrpanoToolJS在浏览器切图
performance.now() 与 Date.now() 对比
一款纯 JS 实现的轻量化图片编辑器
关于开发 VS Code 插件遇到的 workbench.scm.
前端设计模式——观察者模式
前端设计模式——中介者模式
创建型-原型模式