Files
BeWoPlaner/BeWo/View/BeWoWindow.xaml
2016-06-27 01:45:38 +02:00

16 lines
714 B
XML

<Window x:Class="BeWo.View.BeWoWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="BeWoPlaner" MinHeight="300" MinWidth="300"
WindowStyle="None"
WindowStartupLocation="CenterOwner"
AllowsTransparency="True"
Background="Transparent"
ResizeMode="CanResizeWithGrip">
<Grid>
<GroupBox x:Name="rootGroupBox" Style="{DynamicResource MainContentGroupBoxWithoutMaximizeBtnStyle}" MouseLeftButtonDown="RootGroupBox_OnMouseLeftButtonDown" MouseDoubleClick="RootGroupBox_OnMouseDoubleClick">
</GroupBox>
</Grid>
</Window>