To create a C1TreeView filled with check box nodes, simply set the C1TreeView's ShowCheckBoxes property to True and all of the nodes contained within the control will adopt check boxes.
In Design View
Complete the following steps:
The C1TreeView Designer Form dialog box opens.
In Source View
Add ShowCheckBoxes = True to the <cc1:C1TreeView> tag so that the markup resembles the following:
<cc1:C1TreeView ID="C1TreeView1" runat="server" ShowCheckBoxes="True">
In Code
Add the following code snippet to the Page_Load event:
To write the code in Visual Basic:
To write the code in C#: