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.
30 lines
1.4 KiB
30 lines
1.4 KiB
<UserControl x:Class="Kingo.Plugin.BGSetting.View.ViewSystemSetting.ViewAuxiliaryTools" |
|
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" |
|
mc:Ignorable="d" d:DesignHeight="450" d:DesignWidth="800"> |
|
<Grid Background="White"> |
|
<Grid.RowDefinitions> |
|
<RowDefinition/> |
|
<RowDefinition/> |
|
<RowDefinition/> |
|
</Grid.RowDefinitions> |
|
<GroupBox Grid.Row="0" Header="区域调整图斑变更" HorizontalAlignment="Stretch" Margin="8" VerticalAlignment="Stretch" Height="120"> |
|
<Grid> |
|
<Grid.RowDefinitions> |
|
<RowDefinition/> |
|
</Grid.RowDefinitions> |
|
<Grid.ColumnDefinitions> |
|
<ColumnDefinition Width="120"/> |
|
</Grid.ColumnDefinitions> |
|
</Grid> |
|
</GroupBox> |
|
<GroupBox Grid.Row="1" Header="增量数据提取" HorizontalAlignment="Stretch" Margin="8" VerticalAlignment="Stretch"> |
|
|
|
</GroupBox> |
|
<GroupBox Grid.Row="2" Header="行政区提取" HorizontalAlignment="Stretch" Margin="8" VerticalAlignment="Stretch"> |
|
|
|
</GroupBox> |
|
</Grid> |
|
</UserControl>
|
|
|