Product Bundles
DevCraft
All Telerik .NET tools and Kendo UI JavaScript components in one package. Now enhanced with:
Web
Mobile
Document Management
Desktop
Reporting
Testing & Mocking
CMS
UI/UX Tools
Debugging
Free Tools
Support and Learning
Productivity and Design Tools
protected
void
Page_Load(
object
sender, EventArgs e)
{
RadTreeView RadTreeView1 =
new
RadTreeView();
RadTreeNode Past =
RadTreeNode();
Past.Text =
"Past"
;
RadTreeNode Example1 =
Example1.Text =
"Example1"
RadTreeNode child1 =
child1.Text =
"child1"
RadTreeNode child2 =
child2.Text =
"child2"
RadTreeNode Example2 =
Example2.Text =
"Example2"
RadTreeNode child3 =
child3.Text =
"child3"
RadTreeNode child4 =
child4.Text =
"child4"
RadTreeView1.Nodes.Add(Past);
Past.Nodes.Add(Example1);
Past.Nodes.Add(Example2);
Example1.Nodes.Add(child1);
Example1.Nodes.Add(child2);
Example2.Nodes.Add(child3);
Example2.Nodes.Add(child4);
form1.Controls.Add(RadTreeView1);
}