15 lines
845 B
Plaintext
15 lines
845 B
Plaintext
|
|
<Window x:Class="InSituLaboratory.Base.DialogWindowEx"
|
||
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
||
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
||
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
||
|
|
xmlns:local="clr-namespace:InSituLaboratory.Base"
|
||
|
|
mc:Ignorable="d" ResizeMode="NoResize" ShowInTaskbar="False"
|
||
|
|
WindowStartupLocation="CenterScreen" Background="{x:Null}"
|
||
|
|
Width="{Binding Content.Width,RelativeSource={RelativeSource Self}}"
|
||
|
|
Height="{Binding Content.Height,RelativeSource={RelativeSource Self}}">
|
||
|
|
<WindowChrome.WindowChrome>
|
||
|
|
<WindowChrome GlassFrameThickness="-1" NonClientFrameEdges="None"/>
|
||
|
|
</WindowChrome.WindowChrome>
|
||
|
|
</Window>
|