<local
:TreeView x:Name="RadTreeView1" ToolTip="Enter Name" Height="500" Width="300"
ItemsOptionListType="CheckList" IsOptionElementsEnabled="True" >
</local:TreeView>
private void AddItem_Click(object sender, RoutedEventArgs e)
{
List<TreeImageCollection> lstTreeImageCollection1 = new List<TreeImageCollection>();
TreeImageCollection objTreeImageCollection = new TreeImageCollection();
objTreeImageCollection.ImageID =
"200";
objTreeImageCollection.ImageSource =
"../Images/iDropdownArrowDownHOT.png";
objTreeImageCollection.ToolTip =
"Hi This my Image ";
//objTreeImageCollection.Alignment = ImageAlignment.Left;
lstTreeImageCollection1.Add(objTreeImageCollection);
RadTreeView1.AddNode(
"0", "4", "Item ggg004", null, lstTreeImageCollection1, ToggleState.On, false, false, false);
}
