我想在屏幕右侧设置窗口的位置,类似于WPF。 UWP有办法做到这一点吗?
答案 0 :(得分:2)
AFAIK在 UWP 中是不可能的(至少现在还没有),您可以通过访问ApplicationView类来更改窗口大小或使其全屏,但是没有像这样的方法/属性在 WPF 。
答案 1 :(得分:-3)
是的,有办法:)转到您的xaml,例如Windows1.xaml
然后把它放在那里。示例代码
<Window
x:Class="Poultry_Management_System.Window1" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="Login"
Width="450"
WindowStartupLocation="CenterScreen"
WindowStyle="None"
ResizeMode="NoResize"
Topmost="True"
KeyDown="keyDown_form"
Height="200">
正如您可以在中心看到我的StartupLocation。