This question is locked. New answers and comments are not allowed.
Hi Telerik team,
I'm using WP7 Controls Q3 2011.
When I drop a Listpicker control on to my page and test them either with emulator or device, first thing is, there are transparent, one can see other controls beneath the listpicker control, and the listpicker does no inline scroll, it just overlaps everthing beneath it. It doesn't behave like the listpicker in the Telerik WP7 examples.
Here is my code:
Maybe I missing something here.
I'm using WP7 Controls Q3 2011.
When I drop a Listpicker control on to my page and test them either with emulator or device, first thing is, there are transparent, one can see other controls beneath the listpicker control, and the listpicker does no inline scroll, it just overlaps everthing beneath it. It doesn't behave like the listpicker in the Telerik WP7 examples.
Here is my code:
<P><phone:PhoneApplicationPage<BR> x:Class="RadControlsWindowsPhoneApp1.MainPage"<BR> xmlns="<Ahref="http://schemas.microsoft.com/winfx/2006/xaml/presentation">http://schemas.microsoft.com/winfx/2006/xaml/presentation<;/A>"<BR> xmlns:x="<Ahref="http://schemas.microsoft.com/winfx/2006/xaml">http://schemas.microsoft.com/winfx/2006/xaml<;/A>"<BR> xmlns:phone="clr-namespace:Microsoft.Phone.Controls;assembly=Microsoft.Phone"<BR> xmlns:shell="clr-namespace:Microsoft.Phone.Shell;assembly=Microsoft.Phone"<BR> xmlns:d="<Ahref="http://schemas.microsoft.com/expression/blend/2008">http://schemas.microsoft.com/expression/blend/2008<;/A>"<BR> xmlns:mc="<Ahref="http://schemas.openxmlformats.org/markup-compatibility/2006">http://schemas.openxmlformats.org/markup-compatibility/2006<;/A>"<BR> mc:Ignorable="d" d:DesignWidth="480" d:DesignHeight="768"<BR> FontFamily="{StaticResource PhoneFontFamilyNormal}"<BR> FontSize="{StaticResource PhoneFontSizeNormal}"<BR> Foreground="{StaticResource PhoneForegroundBrush}"<BR> SupportedOrientations="Portrait" Orientation="Portrait"<BR> shell:SystemTray.IsVisible="True" <BR> xmlns:telerikInput="clr-namespace:Telerik.Windows.Controls;assembly=Telerik.Windows.Controls.Input"></P><P> <!--LayoutRoot is the root grid where all page content is placed--><BR> <Grid x:Name="LayoutRoot"Background="Transparent"><BR> <Grid.RowDefinitions><BR> <RowDefinitionHeight="Auto"/><BR> <RowDefinition Height="*"/><BR> </Grid.RowDefinitions></P><P> <!--TitlePanel contains the name of the application and page title--><BR> <StackPanelx:Name="TitlePanel" Grid.Row="0"Margin="12,17,0,28"><BR> <TextBlock x:Name="ApplicationTitle" Text="MY APPLICATION"Style="{StaticResource PhoneTextNormalStyle}"/><BR> <TextBlock x:Name="PageTitle" Text="page name" Margin="9,-7,0,0"Style="{StaticResource PhoneTextTitle1Style}"/><BR> </StackPanel></P><P> <!--ContentPanel - place additional content here--><BR> <Grid x:Name="ContentPanel" Grid.Row="1"Margin="12,0,12,0"><BR> <TextBlock Height="30" HorizontalAlignment="Left" Margin="12,26,0,0"Text="TextBlock" VerticalAlignment="Top"/><BR> <TextBox Height="73" HorizontalAlignment="Left" Margin="0,48,0,0"Text="TextBox" VerticalAlignment="Top" Width="460"/><BR> <telerikInput:RadListPicker x:Name="RadListpicker1" Header="List1"Height="82" HorizontalAlignment="Left" Margin="12,141,0,0"VerticalAlignment="Top" Width="434"/><BR> <telerikInput:RadListPicker x:Name="RadListpicker2" Header="List2"Height="83" HorizontalAlignment="Left" Margin="12,241,0,0"VerticalAlignment="Top" Width="434"/><BR> </Grid><BR> </Grid></P><P></phone:PhoneApplicationPage><BR></P>And the C# code
<P>using System;<BR>using System.Collections.Generic;<BR>usingSystem.Linq;<BR>using System.Net;<BR>using System.Windows;<BR>usingSystem.Windows.Controls;<BR>using System.Windows.Documents;<BR>usingSystem.Windows.Input;<BR>using System.Windows.Media;<BR>usingSystem.Windows.Media.Animation;<BR>using System.Windows.Shapes;<BR>usingMicrosoft.Phone.Controls;</P><P>namespace RadControlsWindowsPhoneApp1<BR>{<BR> publicpartial class MainPage : PhoneApplicationPage<BR> {<BR> // Constructor<BR> publicMainPage()<BR> {<BR> InitializeComponent();</P><P><BR> List<string> Groups = new List<string>() { "System", "NonSystem", "Offsite", "L40_Offsite", "none"};<BR> this.RadListpicker1.ItemsSource = Groups;<BR> List<string> Category = new List<string>() { "LTO2", "LTO4", "LTO5"};<BR> this.RadListpicker2.ItemsSource = Category;<BR> }<BR> }<BR>}</P>Maybe I missing something here.