0

我有一个 Wpf 应用程序,我希望所有的窗口都是全屏并居中。我在每个构造函数中添加了这条指令:

WindowStartupLocation = System.Windows.WindowStartupLocation.CenterScreen;

在我自己的电脑上它是有效的。但在其他情况下,它不是因为固定值。

<Window x:Class="IHM.Authentification"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
     Title="" Height="803" Width="1380px" ResizeMode="NoResize" Background="#FFE8EEF3" WindowState="Maximized" WindowStyle="None">

我希望高度和宽度的值是动态的,并且与 PC 屏幕的尺寸无关。

那么我该如何解决这个错误呢?

4

2 回答 2

2

只需删除固定值并添加

WindowStartupLocation="CenterScreen"

删除构造函数

<Window x:Class="IHM.Authentification"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
 Title="" ResizeMode="NoResize" Background="#FFE8EEF3" WindowState="Maximized" WindowStyle="None"
 WindowStartupLocation="CenterScreen"
>
于 2013-04-23T13:19:45.113 回答
0

只有 WindowState="Maximized" 会做

于 2013-04-23T13:39:39.783 回答