| List for WinForms Tutorials > Tutorial 13 CheckBox Selection |
In this tutorial you will learn to use the SelectionMode property to allow users to select multiple items in a list using a checkbox.
To write code in Visual Basic
| Visual Basic |
Copy Code
|
|---|---|
' CheckBox selection. Me.C1List1.SelectionMode = C1.Win.C1List.SelectionModeEnum.CheckBox |
|
To write code in C#
| C# |
Copy Code
|
|---|---|
// CheckBox selection. this.c1List1.SelectionMode = C1.Win.C1List.SelectionModeEnum.CheckBox; |
|
You can place a checkmark in multiple boxes to select multiple rows:

This concludes the tutorial.