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.
47 lines
3.2 KiB
47 lines
3.2 KiB
<windows:BaseWindow |
|
xmlns:windows="clr-namespace:KGIS.Framework.Utils;assembly=KGIS.Framework.Utils" |
|
x:Class="Kingo.Plugin.SystemSetting.View.ViewSystemSetting.FrmWYInfoSetting" |
|
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:kui="clr-namespace:KUI;assembly=KUI" |
|
xmlns:btn="clr-namespace:KUI.Button;assembly=KUI" |
|
mc:Ignorable="d" |
|
Width="800" Height="180" Title="添加图层"> |
|
<Grid Background="White"> |
|
<Grid.RowDefinitions> |
|
<RowDefinition /> |
|
<RowDefinition Height="40"/> |
|
</Grid.RowDefinitions> |
|
<GroupBox Header="外业信息" HorizontalAlignment="Stretch" Margin="8" VerticalAlignment="Stretch"> |
|
<StackPanel Orientation="Horizontal" HorizontalAlignment="Center" Grid.Row="0"> |
|
|
|
<!--<Label Content="图层名称:" VerticalContentAlignment="Center" /> |
|
<ComboBox Name="cobLayerName" Width="150" Height="27" Margin="10,0,0,0" ItemsSource="{Binding LayerNameList}" SelectedValue="{Binding SelectedLayer,Mode=TwoWay}" DisplayMemberPath="AliasName" SelectedValuePath="Name"> |
|
</ComboBox> |
|
|
|
<Label Content="关联方式:" VerticalContentAlignment="Center" Margin="10,0,0,0"/> |
|
<ComboBox Name="cobModel" Width="150" Height="27" Margin="10,0,0,0" ItemsSource="{Binding RelevantModelList}" SelectedValue="{Binding RelevantModel,Mode=TwoWay}" DisplayMemberPath="Name" SelectedValuePath="Name"> |
|
</ComboBox>--> |
|
|
|
<Label Content="图层名称:" VerticalContentAlignment="Center" /> |
|
<ComboBox Name="cobLayerName" Width="150" Height="35" Margin="10,0,0,0" SelectionChanged="CobLayerName_SelectionChanged" DisplayMemberPath="AliasName" SelectedValuePath="Name" > |
|
</ComboBox> |
|
|
|
<Label Content="关联方式:" VerticalContentAlignment="Center" Margin="10,0,0,0"/> |
|
<ComboBox Name="cobModel" Width="150" Height="35" Margin="10,0,0,0" SelectionChanged="CobModel_SelectionChanged" DisplayMemberPath="Name" SelectedValuePath="Name"> |
|
</ComboBox> |
|
|
|
<Label Content="属性字段/面积占比:" VerticalContentAlignment="Center" Margin="10,0,0,0"/> |
|
<ComboBox Name="cobFields" Width="150" Height="35" Margin="10,0,0,0" DisplayMemberPath="Name" SelectedValuePath="Name" > |
|
</ComboBox> |
|
|
|
</StackPanel> |
|
</GroupBox> |
|
<StackPanel Orientation="Horizontal" HorizontalAlignment="Center" Grid.Row="1"> |
|
<btn:KImgButton x:Name="btnOK" Content="确 定" Width="80" Height="32" CornerRadius="3" Margin="5,0" Foreground="White" Click="btnOK_Click" /> |
|
<btn:KImgButton x:Name="btnCancel" Content="取 消" Width="80" Height="32" CornerRadius="3" Margin="5,0" Foreground="White" Click="btnCancel_Click" /> |
|
</StackPanel> |
|
</Grid> |
|
</windows:BaseWindow>
|
|
|