森林草原湿地荒漠调查
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.
 
 
 

81 lines
5.7 KiB

<windows1:BaseWindow
xmlns:windows1="clr-namespace:KGIS.Framework.Utils;assembly=KGIS.Framework.Utils"
xmlns:dxe="http://schemas.devexpress.com/winfx/2008/xaml/editors"
x:Class="Kingo.Plugin.DataDictionary.Views.KBGNewDataManage"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:kuiBtn="clr-namespace:KUI.Button;assembly=KUI"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:userControl1="clr-namespace:KUI.Views;assembly=KUI"
mc:Ignorable="d" Title="生成权属代码字典" Width="700" Height="470" ResizeMode="NoResize" >
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="210"/>
<RowDefinition Height="140"/>
<RowDefinition Height="20"/>
<RowDefinition Height="50"/>
</Grid.RowDefinitions>
<GroupBox Header="设置" Grid.Row="1" Margin="5,0,5,0">
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="35"/>
<RowDefinition Height="35"/>
<RowDefinition Height="35"/>
</Grid.RowDefinitions>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="70"/>
<ColumnDefinition/>
<ColumnDefinition Width="70"/>
<ColumnDefinition/>
</Grid.ColumnDefinitions>
<TextBlock Text="省级代码:" Margin="10,0" VerticalAlignment="Center"/>
<dxe:TextEdit Height="30" x:Name="txt_XJDM" EditValueChanged="txt_XJDM_EditValueChanged" Grid.Column="1"></dxe:TextEdit>
<TextBlock Text="市级代码:" Margin="10,0" Grid.Row="1" VerticalAlignment="Center"/>
<dxe:TextEdit Height="30" x:Name="txt_XianJDMCD" EditValueChanged="txt_XianJDMCD_EditValueChanged" Grid.Column="1" Grid.Row="1"></dxe:TextEdit>
<TextBlock Text="县级代码:" Margin="10,0" Grid.Row="2" VerticalAlignment="Center"/>
<dxe:TextEdit Height="30" x:Name="txt_CJDMCD" EditValueChanged="txt_CJDMCD_EditValueChanged" Grid.Column="1" Grid.Row="2"></dxe:TextEdit>
<TextBlock Text="省级名称:" Margin="10,0" HorizontalAlignment="Left" Grid.Column="2" VerticalAlignment="Center"/>
<dxe:TextEdit Height="30" x:Name="txt_ShengJMC" Grid.Column="3"></dxe:TextEdit>
<TextBlock Text="市级名称:" Margin="10,0" Grid.Column="2" Grid.Row="1" VerticalAlignment="Center"/>
<dxe:TextEdit Height="30" x:Name="txt_ShiJMC" Grid.Column="3" Grid.Row="1" ></dxe:TextEdit>
<TextBlock Text="县级名称:" Margin="10,0" Grid.Column="2" Grid.Row="2" VerticalAlignment="Center"/>
<dxe:TextEdit Height="30" x:Name="txt_XJMC" Grid.Column="3" Grid.Row="2"></dxe:TextEdit>
</Grid>
</GroupBox>
<GroupBox Header="选择" Grid.Row="0" Margin="5,0,5,0">
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="35"/>
<RowDefinition Height="35"/>
<RowDefinition Height="35"/>
<RowDefinition Height="35"/>
<RowDefinition Height="35"/>
</Grid.RowDefinitions>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="100"/>
<ColumnDefinition />
</Grid.ColumnDefinitions>
<TextBlock Grid.Row="0" Grid.Column="0" VerticalAlignment="Center" Text="选择地类图斑文件:"></TextBlock>
<dxe:ButtonEdit Grid.Row="0" Grid.Column="1" Height="30" x:Name="btn_DLTB" VerticalAlignment="Center" AllowDefaultButton="False">
<dxe:ButtonInfo x:Name="btnDLTB" Click="btn_DLTB_Click" Content="选 择"/>
</dxe:ButtonEdit>
<TextBlock VerticalAlignment="Center" Grid.Row="1" Grid.Column="0" Text="权属单位代码字段:"></TextBlock>
<ComboBox Height="30" Grid.Column="1" DisplayMemberPath="Name" SelectedValuePath="Id" Grid.Row="1" x:Name="cmb_Qsdwdmzd"></ComboBox>
<TextBlock VerticalAlignment="Center" Grid.Row="2" Grid.Column="0" Text="权属单位名称字段:"></TextBlock>
<ComboBox Height="30" Grid.Column="1" DisplayMemberPath="Name" SelectedValuePath="Id" Grid.Row="2" x:Name="cmb_Qsdwmczd"></ComboBox>
<TextBlock VerticalAlignment="Center" Grid.Row="3" Grid.Column="0" Text="坐落单位代码字段:"></TextBlock>
<ComboBox Height="30" Grid.Column="1" DisplayMemberPath="Name" SelectedValuePath="Id" Grid.Row="3" x:Name="cmb_Zldwdmzd"></ComboBox>
<TextBlock VerticalAlignment="Center" Grid.Row="4" Grid.Column="0" Text="坐落单位名称字段:"></TextBlock>
<ComboBox Height="30" Grid.Column="1" DisplayMemberPath="Name" SelectedValuePath="Id" Grid.Row="4" x:Name="cmb_Zldwmczd"></ComboBox>
</Grid>
</GroupBox>
<StackPanel Grid.Row="2" Orientation="Horizontal" VerticalAlignment="Center">
<TextBlock Text=" 注:选择基础地类图斑中数据进行字典生成" TextWrapping="Wrap" Width="580" Foreground="Red" ></TextBlock>
</StackPanel>
<StackPanel Grid.Row="3" Orientation="Horizontal" HorizontalAlignment="Center" VerticalAlignment="Center">
<kuiBtn:KImgButton Content="确 定" x:Name="btn_oK" Width="75" Click="btn_oK_Click" Height="30" Margin="0,0,50,0"/>
<kuiBtn:KImgButton Content="取 消" Width="75" Click="btn_nO_Click" x:Name="btn_nO" Height="30"/>
</StackPanel>
</Grid>
</windows1:BaseWindow>