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.
31 lines
2.2 KiB
31 lines
2.2 KiB
<windows:BaseWindow x:Class="Kingo.Plugin.MapView.Views.UcClaculationMJView" |
|
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:btn="clr-namespace:KUI.Button;assembly=KUI" |
|
xmlns:kui="clr-namespace:KUI;assembly=KUI" |
|
mc:Ignorable="d" Title="计算椭球面积" WindowStartupLocation="CenterScreen" |
|
xmlns:windows="clr-namespace:KGIS.Framework.Utils;assembly=KGIS.Framework.Utils" |
|
Height="160" Width="300"> |
|
<Grid> |
|
<Grid.RowDefinitions> |
|
<RowDefinition /> |
|
<RowDefinition Height="auto" /> |
|
<RowDefinition Height="60" /> |
|
</Grid.RowDefinitions> |
|
<Grid.ColumnDefinitions> |
|
<ColumnDefinition Width="80"/> |
|
<ColumnDefinition /> |
|
</Grid.ColumnDefinitions> |
|
<Label Content="赋值字段:" VerticalContentAlignment="Center" HorizontalContentAlignment="Right" /> |
|
<ComboBox Grid.Column="1" Height="30" VerticalContentAlignment="Center" x:Name="combField" Margin="0,0,20,0" IsEditable="False"/> |
|
<!--<Label Content="注:城镇村范围应选择使用国家统一下发的最新范围" Foreground="Red" Margin="30,0,0,0" Grid.Row="1" Grid.ColumnSpan="3" />--> |
|
<!--<CheckBox x:Name="ckbDelMinMJ" Content="忽略面积小于0.01的数据" Margin="30,8,0,0" IsEnabled="True" Grid.Row="2" Grid.ColumnSpan="3" IsChecked="True" />--> |
|
<StackPanel Grid.Column="0" Grid.ColumnSpan="2" Grid.Row="2" VerticalAlignment="Center" Orientation="Horizontal" HorizontalAlignment="Center"> |
|
<btn:KImgButton Height="30" x:Name="btnOK" VerticalContentAlignment="Center" Margin="10,0" Content="确 定" Click="BtnOK_Click" /> |
|
<btn:KImgButton Height="30" x:Name="btnCancel" VerticalContentAlignment="Center" Margin="10,0" Content="取 消" Click="BtnCancel_Click" /> |
|
</StackPanel> |
|
<kui:LoadingControl x:Name="loading" Grid.ColumnSpan="3" Grid.RowSpan="3" Visibility="Collapsed" /> |
|
</Grid> |
|
</windows:BaseWindow>
|
|
|