I have placed TextBox control on GamePage.xaml.
It is visible but not responsive, when I touch it nothing happens.
The goal is to implement default WP8.1 behavior when user touch the TextBox to show the Keyboard.
GamePage.xaml:
<SwapChainBackgroundPanel
    x:Class="X.GamePage"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:local="using:X"
    xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
    mc:Ignorable="d">
    
    <Grid>
        <TextBox VerticalAlignment="Bottom" />
    </Grid>
</SwapChainBackgroundPanel>
Any ideas what is the problem?