2011-01-06 62 views

回答

4

最簡單的辦法是落實ResizeMode屬性,將其設置爲「CanResizeWithGrip」。

<Window x:Class="TestProject.ScratchWindow" 
     xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" 
     xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" 
     Opacity="1.0" 

     ResizeMode="CanResizeWithGrip" 

     WindowStyle="None" 
     AllowsTransparency="True" 
     Title="Test Window"> 

    <!-- Window Contents Here --> 
</Window> 
+1

只調整右下角。 – 2014-01-16 22:49:54

相關問題