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.
28 lines
1.8 KiB
28 lines
1.8 KiB
<Window x:Class="Kingo.Plugin.EngineEditor.Views.FrmMerge" |
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" |
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" |
|
xmlns:dxg="http://schemas.devexpress.com/winfx/2008/xaml/grid" |
|
Title="合并" Width="500" Height="250" ShowInTaskbar="False"> |
|
<Grid Margin="5"> |
|
<Grid.RowDefinitions> |
|
<RowDefinition Height="*" /> |
|
<RowDefinition Height="auto" /> |
|
</Grid.RowDefinitions> |
|
<GroupBox Header="合并要素列表" > |
|
<dxg:GridControl AutoPopulateColumns="False" Name="gridData" > |
|
<dxg:GridControl.Columns> |
|
<dxg:GridColumn Header="OBJECTID" ReadOnly="True" FieldName="FID" Width="90" /> |
|
</dxg:GridControl.Columns> |
|
<dxg:GridControl.View> |
|
<dxg:TableView Name="gridFileInfo" IsColumnMenuEnabled="False" MouseDown="gridFileInfo_MouseDown" ShowTotalSummary="False" AllowGrouping="False" ShowGroupPanel="False" ShowAutoFilterRow="False" AllowEditing="False" /> |
|
</dxg:GridControl.View> |
|
</dxg:GridControl> |
|
</GroupBox> |
|
<Grid Grid.Row="1"> |
|
<TextBlock VerticalAlignment="Center" Margin="10,0,0,0" TextAlignment="Left" x:Name="txtConten"></TextBlock> |
|
<!--<RadioButton Name="DataQS" VerticalAlignment="Center" Content="权属数据" GroupName="DataType" Margin="60,0,0,0"/> |
|
<RadioButton Name="DataDLTB" VerticalAlignment="Center" Content="地类图斑数据" IsChecked="True" GroupName="DataType" Margin="130,0,0,0"/>--> |
|
<Button HorizontalAlignment="Right" Content="确定" Width="80" Margin="5,5,0,5" Name="btnOK" Click="btnOK_Click" /> |
|
</Grid> |
|
</Grid> |
|
</Window>
|
|
|