Hi telerik team,
I try to get All Items in a Checked List Box in Silverlight but telerik only get the Visible Item, if I want to get the others item, i have to scroll down and get the list again. I wonder are there any way to get full list?
This is how I get it
Thank you
I try to get All Items in a Checked List Box in Silverlight but telerik only get the Visible Item, if I want to get the others item, i have to scroll down and get the list again. I wonder are there any way to get full list?
This is how I get it
ListBox chkListCategories = grid.Find.ByName<
ListBox
>("chkListCategories");
GlobalObject.SILVERLIGHTAPP.VisualTree.Refresh();
IList<
TextBlock
> textlist = chkListCategories.Find.AllByType<
TextBlock
>();
Thank you