将窗口扩展到最大和移动

时间:2011-10-23 14:10:10

标签: c# wpf xaml

我试图将窗户扩大到最大值,而我正在移动它。

但在我移动它之后,窗口返回原始大小。

我知道如何才能让它达到最大尺寸吗?

<Window x:Class="Monitor.MainWindow"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        xmlns:Misc="clr-namespace:Monitor.Misc" 
        Title="Monitor" Icon="Icon.ico" SizeToContent="WidthAndHeight"
        mc:Ignorable="d"
        MaxHeight="244" MinHeight="224"
        xmlns:d="http://schemas.microsoft.com/expression/blend/2008" 
        xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" 
        d:DesignHeight="244" d:DesignWidth="553">

1 个答案:

答案 0 :(得分:0)

您可以设置设置窗口的MinWidthMinHeight属性,以匹配MaxWidthMaxHeight的值。