[示例涉及]:
1、ListBox
2、CheckListBox
[示例代码]:2文件(其余默认)
Form1.Designer.cs
1
namespace WA_Lists
2
{
3
partial class Form1
4
{
5
/// <summary>
6
/// 必需的设计器变量。
7
/// </summary>
8
private System.ComponentModel.IContainer components = null;
9
10
/// <summary>
11
/// 清理所有正在使用的资源。
12
/// </summary>
13
/// <param name="disposing">如果应释放托管资源,为 true;否则为 false。</param>
14
protected override void Dispose(bool disposing)
15
{
16
if (disposing && (components != null))
17
{
18
components.Dispose();
19
}
20
base.Dispose(disposing);
21
}
22
23
Windows 窗体设计器生成的代码
90
91
private System.Windows.Forms.ListBox listBoxSelected;
92
private System.Windows.Forms.CheckedListBox checkedListBoxPossibleValue;
93
private System.Windows.Forms.Button buttonMove;
94
}
95
}
96
97

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

90

91

92

93

94

95

96

97

Form1.cs
1
using System;
2
using System.Collections.Generic;
3
using System.ComponentModel;
4
using System.Data;
5
using System.Drawing;
6
using System.Text;
7
using System.Windows.Forms;
8
9
namespace WA_Lists
10
{
11
public partial class Form1 : Form
12
{
13
public Form1()
14
{
15
InitializeComponent();
16
this.checkedListBoxPossibleValue.Items.Add("Eleven");
17
this.checkedListBoxPossibleValue.Items.AddRange(new object[] {
18
"beautiful",
19
"girl",
20
"string",
21
"object"});
22
this.checkedListBoxPossibleValue.SetItemChecked(0, true); //设置初始打勾的选项
23
this.checkedListBoxPossibleValue.SetItemChecked(3, true); //设置初始打勾的选项
24
this.checkedListBoxPossibleValue.SetItemChecked(6, true); //设置初始打勾的选项
25
//否则要点两次才会打上勾,默认:第一次Click为选中,第二次Click为打勾/取消打勾
26
}
27
28
private void buttonMove_Click(object sender, EventArgs e)
29
{
30
//检查是否在CheckListBox中有任何选中的选项
31
this.listBoxSelected.Items.Clear();
32
33
//循环在CheckListBox中选中的选项,把它们添加到ListBoxSelected中
34
foreach (string item in this.checkedListBoxPossibleValue.CheckedItems)
35
{
36
this.listBoxSelected.Items.Add(item.ToString());
37
}
38
39
//清除所有在CheckListBox中选中的选项
40
for (int i = 0; i < this.checkedListBoxPossibleValue.Items.Count; i++)
41
{
42
this.checkedListBoxPossibleValue.SetItemChecked(i, false);
43
}
44
}
45
}
46
}

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

[示例说明]:
1、开发语言:C#
2、开发环境:Visual Studio.Net 2005 Team suite
3、开发模板:C#.net项目->Windows应用程序