I'm in the process of writing an 'touch-able' WPF Application for Windows 10. Imagine a window containing the following grid:
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="Auto"></RowDefinition>
<RowDefinition Height="*"></RowDefinition>
<RowDefinition Height="Auto"></RowDefinition>
</Grid.RowDefinitions>
<TextBox Text="dsdsd"></TextBox>
<TextBox Text="unten" Grid.Row="2" InputScope="Number"></TextBox>
</Grid>
If my application is compiled using at least .NET 4.6.2 and its window is maximized, I can touch the lower TextBox and the touch-Keyboard opens. However I'm unable to see the control because the keyboard hides it. This behaviour is differs to windows 8.x where the render-canvas size was reduced when the keyboard opened. When doing the same thing in Windows Startbar-Search field, the field does move up so I can see the input field. When opening the keyboard with maximized explorer.exe the window gets smaller.
How can I implement this behaviour in an WPF Application?
Cheers, Manuel