我试图将窗户扩大到最大值,而我正在移动它。
但在我移动它之后,窗口返回原始大小。
我知道如何才能让它达到最大尺寸吗?
<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">
答案 0 :(得分:0)
您可以设置设置窗口的MinWidth
和MinHeight
属性,以匹配MaxWidth
和MaxHeight
的值。