The visibility of the virtual keyboard in Windows 8 Metro Style Apps depends on whether a text input enabled control is focused or not:
In the left image the user tapped into a TextBox control. This tap sets the focus on that TextBox and the virtual keyboard appeared. After having entered some Text the user taps the “OK” button and the virtual keyboard hides again due to the loss of focus (right image).
Image may be NSFW.
Clik here to view. Image may be NSFW.
Clik here to view.
But sometimes there is no Button control to hit after having entered some text and thus the virtual keyboard does not hide and still might cover important parts of the UI. In order to hide the virtual keyboard no matter where the user taps outside the TextBox one could set the focus to a hidden button programmatically.
See the following example:
XAML Markup:
1:<Grid>
2:<Buttonx:Name="hiddenButton"Opacity="0"/>
3:<TextBoxWidth="300"Margin="50"
4:LostFocus="TextBox_LostFocus"/>
5:</Grid>
C# Code Behind:
1:privatevoid TextBox_LostFocus(object sender, RoutedEventArgs e)
2: {
3:this.hiddenButton.Focus(Windows.UI.Xaml.FocusState.Pointer);
4: }