Basically i have two ListPicker controls in my Windows phone application. I bind the ListPicker1 using the collection List<A> ACollection.
"A" class will be having the another one collection List<B> BCollection.
I need the requirement is if BCollection.Count > 0 then i should enable the Visibility of ListPicker2 and should bind that BCollection[ Its from A class ] to the ListPicker2. 
What i expect is , i need to achieve this everything in xaml with 0% c# code in Windows phone.. Is it possible in WP7?