年度变更建库软件5.0版本
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.

57 lines
3.7 KiB

<kui:BaseWindow
x:Class="Kingo.Plugin.EngineEditor.View.UCSetAttribute"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:dxe="http://schemas.devexpress.com/winfx/2008/xaml/editors"
xmlns:dxlc="http://schemas.devexpress.com/winfx/2008/xaml/layoutcontrol"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
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="200" d:DesignWidth="500" Width="600" Height="200" Closed="BaseWindow_Closed">
<Grid>
<Grid.RowDefinitions>
<RowDefinition/>
<RowDefinition/>
<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:ComboBoxEdit x:Name="targetField" Width="120" IsTextEditable="False" IsEnabled="True" SelectedIndexChanged="targetField_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="120" Height="30" HorizontalAlignment="Left" VerticalAlignment="Center"></dxe:TextEdit>
</StackPanel>
</StackPanel>
<StackPanel Height="30" Grid.Row="1" Grid.Column="0" Grid.ColumnSpan="2" Orientation="Horizontal">
<StackPanel Height="30" Orientation="Horizontal">
<dxlc:LayoutGroup Orientation="Horizontal">
<dxlc:LayoutItem Label="选择数据:" LabelPosition="Left" Margin="10,0,0,0">
<dxe:ComboBoxEdit x:Name="externalDataPath" IsTextEditable="False" IsEnabled="True" Height="30" Width="420">
</dxe:ComboBoxEdit>
</dxlc:LayoutItem>
<kuiBtn:KImgButton Content="选 择" Width="80" Height="30" CornerRadius="3" Name="btnExternalData" Foreground="White" Click="btnExternalData_Click" />
</dxlc:LayoutGroup>
</StackPanel>
</StackPanel>
<StackPanel Height="30" Grid.Row="2" Grid.Column="0" Orientation="Horizontal" HorizontalAlignment="Right">
<kuiBtn:KImgButton x:Name="btnOK" Width="65" Margin="20,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="65" Margin="20,0" Content="取消" Click="btnCancel1_Click" />
</StackPanel>
</Grid>
</kui:BaseWindow>