47 lines
2.3 KiB
XML
47 lines
2.3 KiB
XML
<UserControl x:Class="SWS.CAD.Views.Dialog.DialogNewPositional"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
xmlns:local="clr-namespace:SWS.CAD.Views.CustomControl"
|
|
xmlns:telerik="http://schemas.telerik.com/2008/xaml/presentation"
|
|
mc:Ignorable="d"
|
|
d:DesignHeight="450" d:DesignWidth="800">
|
|
<UserControl.Resources>
|
|
<ResourceDictionary>
|
|
<ResourceDictionary.MergedDictionaries>
|
|
<ResourceDictionary Source="pack://application:,,,/SWS.CAD;component/Views/Style/CustomStyles.xaml" />
|
|
</ResourceDictionary.MergedDictionaries>
|
|
</ResourceDictionary>
|
|
</UserControl.Resources>
|
|
<Grid>
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="auto" />
|
|
<RowDefinition Height="auto" />
|
|
<RowDefinition Height="auto" />
|
|
</Grid.RowDefinitions>
|
|
<local:customWindowTitleBar />
|
|
<Grid Grid.Row="1">
|
|
<local:PropertyGrid IsBasicGroup="False" ShowProp="{Binding listPro,Mode=TwoWay}" Background="#454953"
|
|
HorizontalAlignment="Left" Height="auto" VerticalAlignment="Top" Width="270"/>
|
|
</Grid>
|
|
|
|
<Border Grid.Row="2" Height="30" Background="{StaticResource ColorPrimary}">
|
|
<StackPanel HorizontalAlignment="Right" Orientation="Horizontal">
|
|
<telerik:RadButton
|
|
Margin="5"
|
|
Command="{Binding OKCommand}"
|
|
CommandParameter="{Binding RelativeSource={RelativeSource AncestorType=Window}}"
|
|
Content="确定"
|
|
Style="{StaticResource sysBtn}" />
|
|
<telerik:RadButton
|
|
Margin="5"
|
|
Command="{Binding CloseCommand}"
|
|
CommandParameter="{Binding RelativeSource={RelativeSource AncestorType=Window}}"
|
|
Content="取消"
|
|
Style="{StaticResource sysBtn2}" />
|
|
</StackPanel>
|
|
</Border>
|
|
</Grid>
|
|
</UserControl>
|