This question is locked. New answers and comments are not allowed.
I have the code as below:
RadtreeView.Itemsource = sourceList1;
foreache ( var item in sourceList1)
{
if ( sourceList2.Where(o=>o.ID==item.ID).Count()>0)
{
sourceList3.Add(item);
}
}
My question is how to find the RadtreeViewItem in RadtreeView from sourceList3.
Thanks a lot
Zi
RadtreeView.Itemsource = sourceList1;
foreache ( var item in sourceList1)
{
if ( sourceList2.Where(o=>o.ID==item.ID).Count()>0)
{
sourceList3.Add(item);
}
}
My question is how to find the RadtreeViewItem in RadtreeView from sourceList3.
Thanks a lot
Zi