23 lines
813 B
XML
23 lines
813 B
XML
<Window
|
|
x:Class="SWS.CAD.Views.Dialog.CustomDialogWindow"
|
|
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:local="clr-namespace:SWS.CAD.ViewModels"
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
Width="auto"
|
|
Height="auto"
|
|
AllowsTransparency="True"
|
|
Background="White"
|
|
BorderBrush="#026BE3"
|
|
BorderThickness="1"
|
|
SizeToContent="WidthAndHeight"
|
|
WindowStartupLocation="CenterScreen"
|
|
WindowStyle="None"
|
|
mc:Ignorable="d">
|
|
<Window.Resources>
|
|
<ResourceDictionary Source="pack://application:,,,/SWS.CAD;component/Views/Style/CustomStyles.xaml" />
|
|
</Window.Resources>
|
|
|
|
</Window>
|