Windows phone 7 keyboard size
I want to resize the page when the keyboard appears on the screen. I was looking for any clue all day but I can't find anything. In my case. I want to have full page TextBox and some buttons under it. <Grid x:Name="RootLayout" > <Grid > <Grid.RowDefinitions> <RowDefinition Height="*"/> <RowDefinition Height="70"/> </Grid.RowDefinitions> <ScrollViewer Margin="0" > <TextBox TextWrapping="Wrap" Text="TextBox" AcceptsReturn="True" VerticalScrollBarVisibility="Auto" Height="698" Width="480"/> </ScrollViewer> <Canvas x:Name="RootMenu" Margin="0,1,0,0" Grid.Row="1" /> </Grid> </Grid> I use to thing