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.
		
		
		
		
		
			
		
			
				
					
					
						
							33 lines
						
					
					
						
							2.1 KiB
						
					
					
				
			
		
		
	
	
							33 lines
						
					
					
						
							2.1 KiB
						
					
					
				<Window x:Class="Kingo.Plugin.EngineEditor.Views.EditingEdit.FrmClip" | 
						|
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" | 
						|
        xmlns:d="http://schemas.microsoft.com/expression/blend/2008" | 
						|
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" | 
						|
        xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" | 
						|
        xmlns:kuiBtn="clr-namespace:KUI.Button;assembly=KUI" | 
						|
        xmlns:dxe="http://schemas.devexpress.com/winfx/2008/xaml/editors" | 
						|
        mc:Ignorable="d"  Title="裁减"  ShowInTaskbar="False" Height="190" Width="300"> | 
						|
    <Grid  Margin="5" > | 
						|
        <Grid.RowDefinitions> | 
						|
            <RowDefinition Height="30" /> | 
						|
            <RowDefinition Height="*" /> | 
						|
        </Grid.RowDefinitions> | 
						|
        <Grid.ColumnDefinitions> | 
						|
            <ColumnDefinition Width="*" /> | 
						|
            <ColumnDefinition Width="85" /> | 
						|
        </Grid.ColumnDefinitions> | 
						|
        <StackPanel Grid.Row="0" Grid.Column="0"  VerticalAlignment="Center" Orientation="Horizontal"> | 
						|
            <TextBlock VerticalAlignment="Center" Text="缓冲距离(B):" TextAlignment="Left" x:Name="txtConten"></TextBlock> | 
						|
            <dxe:TextEdit  VerticalAlignment="Center" VerticalContentAlignment="Center" PreviewTextInput="TxtBuffer_PreviewTextInput" Width="110" Height="30" Text="0.000" x:Name="txtBuffer"/> | 
						|
        </StackPanel> | 
						|
        <GroupBox Grid.Row="1" Grid.Column="0" Header="裁减要素时"> | 
						|
            <StackPanel  Orientation="Vertical"> | 
						|
                <RadioButton x:Name="radioSaveIntersect" Content="保留相交区域(P)" Margin="0,10"/> | 
						|
                <RadioButton x:Name="radioRemoveIntersect" IsChecked="True" Content="丢弃相交区域(D)"/> | 
						|
            </StackPanel> | 
						|
        </GroupBox> | 
						|
        <StackPanel Grid.Row="0" Grid.Column="1" Grid.RowSpan="2" Orientation="Vertical"> | 
						|
            <kuiBtn:KImgButton HorizontalAlignment="Center" Content="确  定" Width="70" Height="30" Margin="5" Name="btnOK" Click="btnOK_Click" /> | 
						|
            <kuiBtn:KImgButton HorizontalAlignment="Center" Content="取  消" Width="70" Height="30" Margin="5" Name="btnCancel" Click="BtnCancel_Click" /> | 
						|
        </StackPanel> | 
						|
    </Grid> | 
						|
</Window>
 | 
						|
 |