我正在为学校的项目建立一个简单的游戏
我想将屏幕的宽高比设置为16:9;
我写了这些文字:
mainpage.Width = Window.Current.Bounds.Width;
mainpage.Height = Window.Current.Bounds.Height / 0.5625;
在SizeChanged
事件中,但结果是这个
有谁知道如何更改窗口大小?
<Page Name="mainpage"
x:Class="CTT.MainPage"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="using:CTT"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d" Loaded="Page_Loaded" SizeChanged="Page_SizeChanged" >
这些是xaml代码的第一行