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

80 lines
5.5 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: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="420" ResizeMode="NoResize" >
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="190"/>
<RowDefinition Height="130"/>
<RowDefinition Height="20"/>
<RowDefinition Height="50"/>
</Grid.RowDefinitions>
<GroupBox Header="设置" Grid.Row="1" Margin="5,0,5,0">
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="30"/>
<RowDefinition Height="30"/>
<RowDefinition Height="30"/>
</Grid.RowDefinitions>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="70"/>
<ColumnDefinition/>
<ColumnDefinition Width="70"/>
<ColumnDefinition/>
</Grid.ColumnDefinitions>
<TextBlock Text="省级代码:" Margin="10,0" VerticalAlignment="Center"/>
<TextBox Height="25" x:Name="txt_XJDM" TextChanged="txt_XJDM_TextChanged" Grid.Column="1"></TextBox>
<TextBlock Text="市级代码:" Margin="10,0" Grid.Row="1" VerticalAlignment="Center"/>
<TextBox Height="25" x:Name="txt_XianJDMCD" TextChanged="txt_XianJDMCD_TextChanged" Grid.Column="1" Grid.Row="1"></TextBox>
<TextBlock Text="县级代码:" Margin="10,0" Grid.Row="2" VerticalAlignment="Center"/>
<TextBox Height="25" x:Name="txt_CJDMCD" TextChanged="txt_CJDMCD_TextChanged" Grid.Column="1" Grid.Row="2"></TextBox>
<TextBlock Text="省级名称:" Margin="10,0" HorizontalAlignment="Left" Grid.Column="2" VerticalAlignment="Center"/>
<TextBox Height="25" x:Name="txt_ShengJMC" Grid.Column="3"></TextBox>
<TextBlock Text="市级名称:" Margin="10,0" Grid.Column="2" Grid.Row="1" VerticalAlignment="Center"/>
<TextBox Height="25" x:Name="txt_ShiJMC" Grid.Column="3" Grid.Row="1" ></TextBox>
<TextBlock Text="县级名称:" Margin="10,0" Grid.Column="2" Grid.Row="2" VerticalAlignment="Center"/>
<TextBox Height="25" x:Name="txt_XJMC" Grid.Column="3" Grid.Row="2"></TextBox>
</Grid>
</GroupBox>
<GroupBox Header="选择" Grid.Row="0" Margin="5,0,5,0">
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="30"/>
<RowDefinition Height="30"/>
<RowDefinition Height="30"/>
<RowDefinition Height="30"/>
<RowDefinition Height="30"/>
</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="25" 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="25" 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="25" 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="25" 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="25" 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">
<Button Content="确 定" x:Name="btn_oK" Width="75" Click="btn_oK_Click" Height="25" Margin="0,0,50,0"/>
<Button Content="取消" Width="75" Click="btn_nO_Click" x:Name="btn_nO" Height="25"/>
</StackPanel>
</Grid>
</windows1:BaseWindow>