我想在屏幕的右上角打开一个WPF窗口。
现在我可以通过打开窗口然后移动它(通过user32.dll中的movewindow)来实现这一点。但是,这种方法意味着窗口在其默认位置打开,完全加载,然后移动到右上角。
我该如何更改它以便指定窗口的初始位置和大小?
答案 0 :(得分:93)
只需在xaml中设置WindowStartupLocation,Height,Width,Left和Top:
<Window x:Class="WpfApplication1.Window1"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="Window1"
Height="500" Width="500"
WindowStartupLocation="Manual"
Left="0" Top="0">
</Window>
答案 1 :(得分:2)
我喜欢使用WindowStartupLocation="CenterOwner"
(MSDN docs for it)
尽管如此,呼叫者需要将自己指定为所有者才能使用,例如:
new MyWindow() { Owner = this }.ShowDialog();
然后仅定义窗口的高度和宽度,例如:
<Window ...
Height="400" Width="600"
WindowStartupLocation="CenterOwner"
>
...
答案 2 :(得分:2)
对于像我这样想要将窗口的位置设置为当前鼠标位置的人,您可以这样做:
myWindow.WindowStartupLocation = WindowStartupLocation.Manual;
myWindow.Left = PointToScreen(Mouse.GetPosition(null)).X;
myWindow.Top = PointToScreen(Mouse.GetPosition(null)).Y;
答案 3 :(得分:0)
Window有一个名为"WindowStartupLocation"
的属性。
您可以在属性窗口中找到它。只需在构造函数中选择Window,然后转到属性列表。搜索"Startup"
或类似的东西,您可以找到该属性。将其更改为"CenterScreen"
即可达成交易。
注意!确保您没有选择网格而不是窗口!否则你会失败。
或者您也可以像某些人以前写的那样通过XAML编辑来完成它。
答案 4 :(得分:0)
这对我有用(在屏幕上有不同的放置位置):
<Window x:Class="BtnConfig.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:local="clr-namespace:BtnConfig"
mc:Ignorable="d"
Title="MainWindow" Height="142.802" Width="448.089"
Top="288" Left="0">
</Window>
请注意,其中不包含:
WindowStartupLocation="Manual"