You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
2.7 KiB
39 lines
2.7 KiB
<kui:BaseWindow x:Class="Kingo.Plugin.EngineEditor.Views.BoundaryFitting.UCBoundaryFittingNew" |
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" |
|
xmlns:dxe="http://schemas.devexpress.com/winfx/2008/xaml/editors" |
|
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:Kingo.Plugin.EngineEditor.Views.BoundaryFitting" |
|
xmlns:kui="clr-namespace:KGIS.Framework.Utils;assembly=KGIS.Framework.Utils" |
|
xmlns:kuiBtn="clr-namespace:KUI.Button;assembly=KUI" |
|
mc:Ignorable="d" ResizeMode="NoResize" Title="设置属性值" |
|
d:DesignHeight="120" d:DesignWidth="350" Width="350" Height="120" Closed="BaseWindow_Closed"> |
|
<Grid> |
|
<Grid.RowDefinitions> |
|
<RowDefinition Height="50"/> |
|
<RowDefinition/> |
|
</Grid.RowDefinitions> |
|
<Grid.ColumnDefinitions> |
|
<ColumnDefinition/> |
|
<ColumnDefinition/> |
|
</Grid.ColumnDefinitions> |
|
<StackPanel Height="30" Grid.Column="0" Grid.ColumnSpan="2" Orientation="Horizontal"> |
|
<StackPanel Height="30" Orientation="Horizontal" Margin="10,0,0,0"> |
|
<Label Width="65" HorizontalAlignment="Left" VerticalAlignment="Center" >参考图层:</Label> |
|
<dxe:ComboBoxEdit x:Name="targetName" Width="120" IsTextEditable="False" IsEnabled="True" Height="30" SelectedIndexChanged="targetName_SelectionChanged" > |
|
</dxe:ComboBoxEdit> |
|
</StackPanel> |
|
<StackPanel Height="30" Orientation="Horizontal" Margin="5,0,0,0"> |
|
<Label Width="65" HorizontalAlignment="Left" VerticalAlignment="Center" >属性值:</Label> |
|
<dxe:TextEdit Name="AttributeValue" Width="60" Height="30" NullText="0.2" Text="0.2" MaskType="RegEx" Mask="([0-9]{1,}[.][0-9]*)" HorizontalAlignment="Left" VerticalAlignment="Center"></dxe:TextEdit> |
|
</StackPanel> |
|
</StackPanel> |
|
<StackPanel Height="30" Grid.Row="2" Grid.Column="0" Orientation="Horizontal" HorizontalAlignment="Right"> |
|
<kuiBtn:KImgButton x:Name="btnOK" Width="80" Height="30" Margin="10,0" Content="确 认" Click="btnOK_Click" /> |
|
</StackPanel> |
|
<StackPanel Height="30" Grid.Row="2" Grid.Column="1" Orientation="Horizontal" HorizontalAlignment="Left"> |
|
<kuiBtn:KImgButton x:Name="btnCancel1" Width="80" Height="30" Margin="10,0" Content="取 消" Click="btnCancel1_Click" /> |
|
</StackPanel> |
|
</Grid> |
|
</kui:BaseWindow>
|
|
|