改变窗口大小uwp

时间:2017-12-01 06:56:50

标签: c# uwp window

我正在为学校的项目建立一个简单的游戏 我想将屏幕的宽高比设置为16:9;
我写了这些文字:

mainpage.Width = Window.Current.Bounds.Width;
mainpage.Height = Window.Current.Bounds.Height / 0.5625;
SizeChanged事件中

,但结果是这个

i.stack.imgur.com/VcrCz.png

有谁知道如何更改窗口大小?

<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代码的第一行

0 个答案:

没有答案