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.
29 lines
1.8 KiB
29 lines
1.8 KiB
<windows:BaseWindow x:Class="Kingo.Plugin.AttributeMaintain.View.FrmLSYDGLBSMParameter" |
|
xmlns:windows="clr-namespace:KGIS.Framework.Utils;assembly=KGIS.Framework.Utils" |
|
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:dxe="http://schemas.devexpress.com/winfx/2008/xaml/editors" |
|
xmlns:local="clr-namespace:Kingo.Plugin.AttributeMaintain.View" |
|
mc:Ignorable="d" Title="临时用地关联标识码参数设置" |
|
Height="150" Width="460" WindowStartupLocation="CenterScreen" ShowInTaskbar="False"> |
|
<Grid> |
|
<Grid.RowDefinitions> |
|
<RowDefinition /> |
|
<RowDefinition /> |
|
<RowDefinition /> |
|
</Grid.RowDefinitions> |
|
<StackPanel Orientation="Horizontal"> |
|
<Label Content="图斑容差:" Margin="15,0,0,0" VerticalContentAlignment="Center" /> |
|
<!--<TextBox Text="50" VerticalContentAlignment="Center" />--> |
|
<dxe:TextEdit Name="txtAreaRatio" Text="0.5" Width="100" Height="27"/> |
|
<Label Content=" m²以下" VerticalContentAlignment="Center" /> |
|
</StackPanel> |
|
<Label Content="图斑容差表示临时用地和三调图斑压盖面积小于此值不关联,默认设置为0.5m²" Grid.Row="1" Margin="15,0,0,0" VerticalContentAlignment="Center" /> |
|
<StackPanel Grid.Row="2" Orientation="Horizontal" HorizontalAlignment="Center"> |
|
<Button Content="确 定" Height="30" Width="100" Name="btnOK" Click="BtnOK_Click" /> |
|
</StackPanel> |
|
</Grid> |
|
|
|
</windows:BaseWindow>
|
|
|