Looking to find how to add a resize button

Hello: I was experimenting with WPF this afternoon, I wonder if anyone knows how I can manually enable resizing? I have my main windows installed with the following properties that remove closing / min / max and resizing;

<Window x:Class="WpfApplication1.MainWindow" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" Title="MainWindow" Height="350" Width="525" AllowsTransparency="True" WindowStyle="None" Background="Maroon" ResizeMode="CanResize"> </Window> 

I found how to add my own close / min / max buttons, but did not find how to enable resizing.

+4
source share
1 answer
  ResizeMode="CanResizeWithGrip" 
+3
source

All Articles