48 lines
3.0 KiB
Plaintext
48 lines
3.0 KiB
Plaintext
<!-- 路径可视化设置 -->
|
|
<Grid Margin="0,10,0,10">
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="Auto"/>
|
|
<ColumnDefinition Width="*"/>
|
|
</Grid.ColumnDefinitions>
|
|
|
|
<Label Grid.Column="0"
|
|
Content="路径可视化:"
|
|
Style="{StaticResource ParameterLabelStyle}"
|
|
Width="100"
|
|
VerticalAlignment="Center"/>
|
|
|
|
<StackPanel Grid.Column="1"
|
|
Orientation="Vertical"
|
|
Margin="5,0,0,0">
|
|
<!-- 可视化模式选择 -->
|
|
<StackPanel Orientation="Horizontal" Margin="0,0,0,5">
|
|
<RadioButton Content="标准连线"
|
|
GroupName="PathVisualizationMode"
|
|
IsChecked="{Binding IsStandardLineMode}"
|
|
Margin="0,0,20,0"
|
|
VerticalAlignment="Center"
|
|
ToolTip="显示标准圆柱形连线"/>
|
|
<RadioButton Content="车辆通行空间"
|
|
GroupName="PathVisualizationMode"
|
|
IsChecked="{Binding IsVehicleSpaceMode}"
|
|
VerticalAlignment="Center"
|
|
ToolTip="显示车辆通行空间(矩形通道)"/>
|
|
</StackPanel>
|
|
|
|
<!-- 车辆高度模式选择 -->
|
|
<StackPanel Orientation="Horizontal" Margin="0,5,0,0">
|
|
<Label Content="高度模式:" Style="{StaticResource ParameterLabelStyle}" Width="70" VerticalAlignment="Center"/>
|
|
<RadioButton Content="固定高度"
|
|
GroupName="VehicleHeightMode"
|
|
IsChecked="{Binding IsFixedHeightMode}"
|
|
Margin="5,0,15,0"
|
|
VerticalAlignment="Center"
|
|
ToolTip="使用车辆高度+安全间隙"/>
|
|
<RadioButton Content="自动高度"
|
|
GroupName="VehicleHeightMode"
|
|
IsChecked="{Binding IsAutoHeightMode}"
|
|
VerticalAlignment="Center"
|
|
ToolTip="根据网格大小自动计算"/>
|
|
</StackPanel>
|
|
</StackPanel>
|
|
</Grid> |