20230201_145_upperpc/InSituLaboratory/Base/DialogWindowEx.xaml

15 lines
845 B
Plaintext
Raw Normal View History

2024-03-11 05:12:02 +00:00
<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>