I have been working with WP7 for a while using ListPicker / DatePicker. I hate its design though. I am using the liskPicker ExpansionMode = "FullScreenOnly" property. I tried to make these controls more beautiful
// Set the source to FullModeItemTemplate FullModeItemTemplate="{StaticResource lpkFullItemTemplate}"
// the definition of this resource is as follows:
<DataTemplate x:Name="lpkFullItemTemplate"> <StackPanel Orientation="Horizontal" Margin="5 5 5 5" Background="#FFA3A3A3" Width="475" Height="45" > <TextBlock Text="{Binding}" Foreground="Black" Margin="5 5 15 5" /> </StackPanel> </DataTemplate>
I need real changes, a change in the background of this popup and such changes, is this possible? or do I need to create my own popup from scratch?
source share