我刚刚安装了visual studio 2013并开始在XAML上设计我的应用程序,但我遇到了一个问题。
早些时候,我曾经设计过应用程序,我曾经有一个480x800的区域可供使用,但在这个安装中,我只有400 x 640。
我的意思是,如果
<Grid Height="800">
some code
</Grid>
然后它会离开屏幕,但如果我喜欢这个
<Grid Height="640">
some code
</Grid>
然后它适合。如何改变这个?
答案 0 :(得分:1)
您开始创建基于Windows Phone 8.1 XAML
的新应用程序&amp;新8.1应用程序中的扩展与Windows Phone 8.0 Silverlight
应用程序中的扩展不同。
如果您要定位Windows Phone 8或8.1 Silverlight应用程序,它使用始终具有480 width & 800 or 853 height
的相同扩展原则,请转到Visual Studio -> New Project -> Store Apps -> Windows Phone Apps -> Blank App (Windows Phone Silverlight)
。
否则,如果您要定位基于Windows Phone 8.1 XAML的新应用程序,请尝试参考本教程Building Apps for Windows Phone 8.1。
希望这有帮助。