下面演示如何利用列表控件 ListBox 实现多选与移动选项:

  1. using IMS.WinFormClient.UserControls;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Windows.Forms;
  5.  
  6. namespace IMS.WinFormClient
  7. {
  8. public partial class ListBoxForm : Form
  9. {
  10. UCReport _uCReport = null; // parentForm
  11.  
  12. public ListBoxForm(UCReport uCReport, List<KeyValuePair<string, string>> selectedPairs, List<KeyValuePair<string, string>> unselectedPairs)
  13. {
  14. InitializeComponent();
  15.  
  16. _uCReport = uCReport;
  17.  
  18. if (selectedPairs != null)
  19. {
  20. foreach (var field in selectedPairs)
  21. {
  22. this.listBox2.Items.Add(field.Key);
  23. }
  24. }
  25.  
  26. if (unselectedPairs != null)
  27. {
  28. foreach (var field in unselectedPairs)
  29. {
  30. this.listBox1.Items.Add(field.Key);
  31. }
  32. }
  33. }
  34.  
  35. //全部移动:左->右
  36. private void button1_Click(object sender, EventArgs e)
  37. {
  38. foreach (object o in listBox1.Items)
  39. {
  40. listBox2.Items.Add(o);
  41. }
  42. listBox1.Items.Clear();
  43. }
  44.  
  45. //只移动选中项:左->右
  46. private void button2_Click(object sender, EventArgs e)
  47. {
  48. if (this.listBox1.SelectedItems.Count > )
  49. {
  50. object[] items = new object[this.listBox1.SelectedItems.Count];
  51.  
  52. this.listBox1.SelectedItems.CopyTo(items, );
  53.  
  54. foreach (var item in items)
  55. {
  56. string selectedItem = item.ToString();
  57. //判断是否添加到listbox1
  58. if (!this.listBox2.Items.Contains(selectedItem))
  59. {
  60. //添加人员到listbox2中
  61. this.listBox2.Items.Add(selectedItem);
  62. //移除listbox1中
  63. this.listBox1.Items.Remove(selectedItem);
  64. }
  65. }
  66. }
  67. }
  68.  
  69. //只移动选中项:右->左
  70. private void button3_Click(object sender, EventArgs e)
  71. {
  72. if (this.listBox2.SelectedItems.Count > )
  73. {
  74. object[] items = new object[this.listBox2.SelectedItems.Count];
  75.  
  76. this.listBox2.SelectedItems.CopyTo(items, );
  77.  
  78. foreach (var item in items)
  79. {
  80. string selectedItem = item.ToString();
  81. //判断是否添加到listbox1
  82. if (!this.listBox1.Items.Contains(selectedItem))
  83. {
  84. //添加人员到listbox1中
  85. this.listBox1.Items.Add(selectedItem);
  86. //移除listbox2中
  87. this.listBox2.Items.Remove(selectedItem);
  88. }
  89. }
  90. }
  91. }
  92.  
  93. //全部移动:右->左
  94. private void button4_Click(object sender, EventArgs e)
  95. {
  96. foreach (object o in listBox2.Items)
  97. {
  98. listBox1.Items.Add(o);
  99. }
  100. listBox2.Items.Clear();
  101. }
  102.  
  103. private void btnCancel_Click(object sender, EventArgs e)
  104. {
  105. this.Close();
  106. }
  107.  
  108. private void btnOk_Click(object sender, EventArgs e)
  109. {
  110. List<string> selectedFieldsList = new List<string>();
  111. if (this.listBox2.Items.Count > )
  112. {
  113. foreach (var item in this.listBox2.Items)
  114. {
  115. selectedFieldsList.Add(item.ToString());
  116. }
  117. }
  118. else
  119. {
  120. MessageBox.Show("请至少选择一项");
  121. return;
  122. }
  123.  
  124. List<string> unselectedFieldsList = new List<string>();
  125. if (this.listBox1.Items.Count > )
  126. {
  127. foreach (var item in this.listBox1.Items)
  128. {
  129. unselectedFieldsList.Add(item.ToString());
  130. }
  131. }
  132.  
  133. // 通知父窗体更新需要显示的字段
  134. _uCReport.CustomFeildsEvent(selectedFieldsList, unselectedFieldsList);
  135.  
  136. this.Close();
  137. }
  138. }
  139. }

运行结果:

更全面的功能可以参考微软的 SQL Server Business Inteligence 的 Integration Services 项目下的选择界面:

(打开vs->新建Integration Services项目->添加数据源视图->选择3个下一个即可看到以下界面)

WinForm ListBox 控件用法的更多相关文章

  1. asp.net Listbox控件用法

    2008-02-18 19:56 来源: 作者: ListBox(列表框)控件可以显示一组项目的列表,用户可以根据需要从中选择一个或多个选项.列表框可以为用户提供所有选项的列表.虽然也可设置列表框为多 ...

  2. C# LIstbox 解决WinForm下ListBox控件“设置DataSource属性后无法修改项集合”的问题

    解决WinForm下ListBox控件“设置DataSource属性后无法修改项集合”的问题 分类: winform2008-05-24 02:33 2592人阅读 评论(11) 收藏 举报 winf ...

  3. 解决WinForm下ListBox控件“设置DataSource属性后无法修改项集合”

    解决WinForm下ListBox控件“设置DataSource属性后无法修改项集合” 最近更新: 2013-2-15    587   很少写WinForm程序第一次使用ListBox控件就遇到了比 ...

  4. WinForm将一个窗体的值传到另一个窗体的listbox控件,C#

    做arcgisengine二次开发,读取当前图层文件的字段值,别名,类型.  读取文件是在有地图图层的窗体(假设为Form1),由于窗体有限,所以想把读取的数据在另一个窗体(假设为Form2)显示出来 ...

  5. winform窗体控件(全)

    回顾跟补充下除了昨天那常用6个其他的winform窗体控件作用 1:Button:按钮 (1)AutoSize:如果是True的情况下,内容将会撑开:False的话会另起一行 (2)Enabled: ...

  6. WinForm 公共控件

    一.窗体属性: 1.AcceptButton - 窗体的“接受”按钮.如果设置该属性,每次用户按“Enter”键都相当于“单击”了该按钮. 需要设置哪个键,就在后面选择. 2.CancelButton ...

  7. listbox控件使用

    1. 属性列表: SelectionMode    组件中条目的选择类型,即多选(Multiple).单选(Single)    Rows             列表框中显示总共多少行    Sel ...

  8. winform基础控件总结

    转自:http://www.cnblogs.com/top5/archive/2010/04/29/1724039.html 基础 - 常用控件 C# WinForm开发系列 - CheckBox/B ...

  9. ComboxBox控件、checklistbox控件和listbox控件的组合开发

    第一步:先创建一个WinForm窗体应用程序,按照下图所示的进行布局. 第二步:为ComboxBox控件.checklistbox控件和listbox控件和button控件设置属性 第三步:在代码中的 ...

随机推荐

  1. POJ 3233_Matrix Power Series

    题意: 求n*n矩阵的幂和 分析: 逐个加起来时间复杂度太高,通过在矩阵中套个矩阵和,再利用矩阵快速幂,最后时间复杂度为O(n3logn) 代码: #include<cstdio> #in ...

  2. operamasks-omGrid的使用

    <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="personTab.aspx ...

  3. 条款三:尽量用new和delete而不用malloc和free

    malloc和free(及其变体)会产生问题的原因在于它们太简单:他们不知道构造函数和析构函数. 假设用两种方法给一个包含10个string对象的数组分配空间,一个用malloc,另一个用new: s ...

  4. <a href="javascript:;"></a>

    有时会在网页a标签中看到这样的代码,比如: <a href="javascript:;">反选</a> 这是啥意思呢? 我们知道标签的 href属性用于指定 ...

  5. 七夕节 看到很多停止更新的blog 莫名有点淡淡的忧桑

    又是一年七夕.又是一年单身.看到很多停止更新的blog, 仿佛看到了一茬一茬的程序猿 进入it 圈 又离开it圈,就有莫名的忧桑

  6. 在对象内部尽量直接訪问实例变量 --Effictive Objective-C 抄书

    在对象之外訪问实例变量时,应该总是通过属性来做.在那么在对象内部訪问实例变量的时候,又该怎样呢? 这是 OCer们一直激烈讨论的问题.有人觉得,不管什么情况,都应该通过属性来訪问实例变量;也有人说,& ...

  7. opencv对图像进行边缘及角点检測

    opencv对图像进行边缘及角点检測 先看结果: 代码: // ConsoleApplication1_812.cpp : Defines the entry point for the consol ...

  8. mac svn cornerstone 破解版资源以及使用方法(仅供学习,非商业使用)

    mac svn 可视化客户端,找了好久,不知道是我搜索的有问题还是怎么了,没有特别好用的. 后来发现了一个大神做的破解版的 cornerstone,具体大神的博客我给忘记了,后续找到会贴出地址,以供膜 ...

  9. 2016/1/6 输出菱形 while语句计算阶乘分数之和

    public class LingXing { public static void main(String[] args) { //打印菱形 for (int x=1;x<6;x++){ fo ...

  10. iOS开发——基础篇——get和post请求的区别

    HTTP 定义了与服务器交互的不同方法,最常用的有4种,Get.Post.Put.Delete,如果我换一下顺序就好记了,Put(增),Delete(删),Post(改),Get(查),即增删改查,下 ...