在Windows窗体上,您拥有StartPosition
属性,该属性允许您指定窗体在启动时放置在屏幕上的位置。
WPF是否具有等价物,如果是,那么它是什么?
由于
答案 0 :(得分:4)
我认为您正在寻找WindowsStartupLocation
:
将WindowStartupLocation设置为Manual会导致窗口根据其Left和Top属性值进行定位。如果未指定Left或Top属性,则它们的值由Windows确定。
<Window x:Class="WpfAppl.Window1"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="WindowName"
Height="500" Width="500"
WindowStartupLocation="Manual"
Left="0" Top="0">
</Window>