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: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:local="clr-namespace:Kingo.Plugin.EngineEditor.Views.EditingEdit" |
|
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> |
|
<TextBox VerticalAlignment="Center" VerticalContentAlignment="Center" PreviewTextInput="TxtBuffer_PreviewTextInput" Width="110" Height="25" 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"> |
|
<Button HorizontalAlignment="Center" Content="确 定" Width="70" Margin="5" Name="btnOK" Click="btnOK_Click" /> |
|
<Button HorizontalAlignment="Center" Content="取 消" Width="70" Margin="5" Name="btnCancel" Click="BtnCancel_Click" /> |
|
</StackPanel> |
|
</Grid> |
|
</Window>
|
|
|