In my windows phone7 application I have to Use a control something similar to a dropdown list control. So I came across the ListPicker that come up with the WP7 toolkit assembly.
The problem I've got is, it overlaps with the other elements in the page. Following is a screenshot of the interface.
When I click the ListPicker, it expands the list and allow me to select one item out of that. But when I select an item it clicks the button which appears just below to that. I can do ExpansionMode="FullScreenOnly"
but it will go for full screen mode and since the list picker has only 3 items its not the way I want.
Does anyone know any way that I can let the ListPicker expand and select one out of it without occurring the button click which resides below it.
Edits
I have installed WP7 Tool kit for Silverlight
and added the dll in to the project as a reference Microsoft.Phone.Controls.Toolkit
XAML--->
xmlns:toolkit="clr-namespace:Microsoft.Phone.Controls;assembly=Microsoft.Phone.Controls.Toolkit"
<toolkit:ListPicker Name="listPicker1"/>