Reason for cropped keyboard in landscape

I have a page with Pivot with TextBox controls. In the landscape, SIP (virtual keyboard) opffsetted right by 42 pixels, thus from bottom to right.

Clipped keyboard in landscape

In another application, I also have a similar page, without an offset keyboard problem. Before I understand more about the differences between them, has anyone ever encountered this problem before? Can we read the error with Windows Phone 7.1?

(this also happens on a real device)

+5
source share
2 answers

This is a bug in a Windows phone:

"" "", , . , , , , .

, :

private void phoneApplicationPage_OrientationChanged(object sender, OrientationChangedEventArgs e)
{
  if (e.Orientation == PageOrientation.LandscapeLeft || e.Orientation == PageOrientation.LandscapeRight)
  {
    this.ApplicationBar.Mode = Microsoft.Phone.Shell.ApplicationBarMode.Default;
  }
  else
  {
    this.ApplicationBar.Mode = Microsoft.Phone.Shell.ApplicationBarMode.Minimized;
  }
}

, ,

+2

, - . .

.

0

All Articles