扩展窗口到最大值和移动

本文关键字:移动 最大值 窗口 扩展 | 更新日期: 2023-09-27 18:12:01

我试图将我的窗口扩展到最大,然后我正在移动它。

但是在我移动它之后,窗口恢复到原来的大小。

你知道怎么让它保持最大尺寸吗?

<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">

扩展窗口到最大值和移动

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