13 lines
575 B
XML
13 lines
575 B
XML
<Window x:Class="BeWo.View.Detail.ModalViewWindow"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
Height="Auto" Width="Auto" HorizontalAlignment="Stretch" VerticalAlignment="Stretch"
|
|
WindowStartupLocation="Manual"
|
|
WindowStyle="None"
|
|
AllowsTransparency="True"
|
|
Background="Transparent"
|
|
ResizeMode="CanResizeWithGrip" MouseDoubleClick="ModalViewWindow_OnMouseDoubleClick" >
|
|
<Grid x:Name="rootGrid">
|
|
</Grid>
|
|
</Window>
|