2011-10-23 17 views
0

私はウィンドウを最大限に費やそうとしており、移動しています。ウィンドウを最大に移動して移動する

しかし、私はそれを移動した後、ウィンドウは元のサイズに戻ります。

どのように私はそれが最大サイズでsatayすることができますどのようなアイデア?

<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

あなたは試合にMaxWidthMaxHeightの値と一致するように、ウィンドウのMinWidthMinHeightプロパティを設定する設定することができます。

関連する問題