This question is locked. New answers and comments are not allowed.
Hi,
I am facing a strange problem. I have the below code on the Main page of my WP8.1 Universal Application, which shows a RadSideDrawer on the page. The drawer content has some menu options, and main content has the page specific data. the problem is that this page works fine when tested in emulator. But, when I deploy to the WP 8.1 device (Lumia 930 running Demin update), the main page comes up as blank. Any idea what is happening. If I remove the RadSideDrawer from this page and replace it with some other content, it shows perfectly fine on the device.
Appreciate the quick help.
Thanks & Regards
Naweed
<controls:PageBase x:Class="XGENO.Books.Views.MainPage" xmlns:local="using:XGENO.Books.Views" xmlns:telerikPrimitives="using:Telerik.UI.Xaml.Controls.Primitives" xmlns:controls="using:XGENO.Books.Infrastructure" xmlns:prism="using:Microsoft.Practices.Prism.Mvvm" prism:ViewModelLocator.AutoWireViewModel="True" mc:Ignorable="d" Background="{ThemeResource ApplicationPageBackgroundThemeBrush}"> <Grid> <Grid.Background> <ImageBrush ImageSource="/Assets/PageBackground.jpg" Stretch="Fill" /> </Grid.Background> <Grid.RowDefinitions> <RowDefinition Height="30" /> <RowDefinition Height="*" /> </Grid.RowDefinitions> <Rectangle Fill="#325E3A" /> <telerikPrimitives:RadSideDrawer x:Name="sideDrawer" TouchTargetThreshold="100" DrawerManipulationMode="Both" DrawerButtonStyle="{StaticResource DrawerButtonStyle}" DrawerButtonVerticalAlignment="Top" DrawerTransition="Reveal" Grid.Row="1"> <telerikPrimitives:RadSideDrawer.MainContent> <Grid> <Grid.RowDefinitions> <RowDefinition Height="40" /> <RowDefinition Height="*" /> </Grid.RowDefinitions> <Rectangle Fill="#325E3A" /> <TextBlock Text="{Binding Title}" VerticalAlignment="Bottom" Margin="40 0 0 0" Foreground="#ffffff" FontSize="30" FontWeight="SemiBold" /> <Button Content="Start Reading" Command="{Binding StartReadingCommand}" Style="{StaticResource SideMenuButtonStyle}" Grid.Row="1" /> </Grid> </telerikPrimitives:RadSideDrawer.MainContent> <telerikPrimitives:RadSideDrawer.DrawerContent> <Border Background="#325E3A" Width="260"> <Grid> <Grid.RowDefinitions> <RowDefinition Height="40" /> <RowDefinition Height="*" /> </Grid.RowDefinitions> <StackPanel Grid.Row="1" Orientation="Vertical"> <StackPanel Orientation="Horizontal" Margin="10,0,0,0" VerticalAlignment="Center"> <Image Source="/Assets/Icons/About.png" Height="20" Width="20" Margin="10,0,0,0" /> <Button Content="About" Command="{Binding AboutCommand}" Style="{StaticResource SideMenuButtonStyle}" /> </StackPanel> <StackPanel Orientation="Horizontal" Margin="10,0,0,0" VerticalAlignment="Center"> <Image Source="/Assets/Icons/PrivacyPolicy.png" Height="20" Width="20" Margin="10,0,0,0" /> <Button Content="Privacy Policy" Command="{Binding PrivacyPolicyCommand}" Style="{StaticResource SideMenuButtonStyle}" /> </StackPanel> <StackPanel Orientation="Horizontal" Margin="10,10,0,0" VerticalAlignment="Center"> <Image Source="/Assets/Icons/Settings.png" Height="20" Width="20" Margin="10,0,0,0" /> <Button Content="SETTINGS" Command="{Binding SettingsCommand}" FontWeight="Bold" Style="{StaticResource SideMenuButtonStyle}" /> </StackPanel> <Line X1="280" Y1="0" Margin="10,10,10,20" StrokeThickness="1" Stroke="White" Opacity="0.7"></Line> <StackPanel Orientation="Horizontal" Margin="10,0,0,0" VerticalAlignment="Center"> <Image Source="/Assets/Icons/Feedback.png" Height="20" Width="20" Margin="10,0,0,0" /> <Button Content="Feedback" Command="{Binding FeedbackCommand}" Style="{StaticResource SideMenuButtonStyle}" /> </StackPanel> <StackPanel Orientation="Horizontal" Margin="10,0,0,0" VerticalAlignment="Center"> <Image Source="/Assets/Icons/RateReview.png" Height="20" Width="20" Margin="10,0,0,0" /> <Button Content="Rate and Review" Command="{Binding RateReviewCommand}" Style="{StaticResource SideMenuButtonStyle}" /> </StackPanel> </StackPanel> </Grid> </Border> </telerikPrimitives:RadSideDrawer.DrawerContent> </telerikPrimitives:RadSideDrawer> </Grid></controls:PageBase>