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
						
					
					
				<Window x:Class="Kingo.Plugin.EngineEditor.Views.FrmMerge" | 
						|
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" | 
						|
        xmlns:dxg="http://schemas.devexpress.com/winfx/2008/xaml/grid" | 
						|
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" | 
						|
        xmlns:kuiBtn="clr-namespace:KUI.Button;assembly=KUI" | 
						|
        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"/>--> | 
						|
            <kuiBtn:KImgButton HorizontalAlignment="Right" Content="确  定" Width="80" Height="30" Margin="5,5,5,5" Name="btnOK" Click="btnOK_Click"  /> | 
						|
        </Grid> | 
						|
    </Grid> | 
						|
</Window>
 | 
						|
 |