This question is locked. New answers and comments are not allowed.
Plain and simple, here's my code:
and here's what happens:
http://i.imgur.com/FWNq9bh.png
Any idea?
<!-- Modal windows --> <telerikPrimitives:RadModalWindow x:Name="IngredientsWindow" IsFullScreen="True" IsClosedOnOutsideTap="True"> <telerikPrimitives:RadWindow.ApplicationBarInfo> <telerikPrimitives:ApplicationBarInfo> <telerikPrimitives:ApplicationBarButton Name="SaveApplicationBarButton" IconUri="/Assets/AppBar/save.png" Text="Save" Click="SaveApplicationBarButton_OnClick" /> <telerikPrimitives:ApplicationBarButton Name="CancelApplicationBarButton" IconUri="/Assets/AppBar/cancel.png" Text="Cancel" Click="CancelApplicationBarButton_OnClick" /> </telerikPrimitives:ApplicationBarInfo> </telerikPrimitives:RadWindow.ApplicationBarInfo> <Border Width="Auto" BorderBrush="{StaticResource PhoneBorderBrush}" BorderThickness="{StaticResource PhoneBorderThickness}"> <Grid Background="{StaticResource PhoneBackgroundBrush}"> <Grid.RowDefinitions> <RowDefinition Height="10*"/> <RowDefinition/> </Grid.RowDefinitions> <Grid.ColumnDefinitions> <ColumnDefinition/> <ColumnDefinition/> </Grid.ColumnDefinitions> <telerikPrimitives:RadTextBox Header="Name: " Width="200" Text="{Binding CurrentIngredient.IngredientName, Mode=TwoWay}"/> </Grid> </Border> <telerikPrimitives:RadModalWindow.OpenAnimation> <telerik:RadPlaneProjectionAnimation CenterY="0.5" CenterX="0" StartAngleX="-90" EndAngleX="0" Axes="X"> <telerik:RadPlaneProjectionAnimation.Easing> <CubicEase EasingMode="EaseOut"/> </telerik:RadPlaneProjectionAnimation.Easing> </telerik:RadPlaneProjectionAnimation> </telerikPrimitives:RadModalWindow.OpenAnimation> </telerikPrimitives:RadModalWindow>http://i.imgur.com/FWNq9bh.png
Any idea?