chore: 预计算高亮按钮移至折叠的实验特性区

This commit is contained in:
tian 2026-07-16 10:30:29 +08:00
parent b00f0093ab
commit 80bd7b7c65

View File

@ -465,18 +465,24 @@ NavisworksTransport 检测动画页签视图 - 采用与类别设置和分层管
Command="{Binding ClearClashDetectiveHighlightsCommand}"
IsEnabled="{Binding HasClashDetectiveResults}"
Style="{StaticResource SecondaryButtonStyle}"/>
<Button Content="预计算高亮(调试)"
Command="{Binding HighlightPrecomputedCollisionResultsCommand}"
IsEnabled="{Binding HasClashDetectiveResults}"
Style="{StaticResource SecondaryButtonStyle}"/>
<Button Content="清除预计算高亮(调试)"
Command="{Binding ClearPrecomputedCollisionHighlightsCommand}"
IsEnabled="{Binding HasClashDetectiveResults}"
Style="{StaticResource SecondaryButtonStyle}"/>
<Button Content="线框模式"
Command="{Binding ToggleWireframeModeCommand}"
Style="{StaticResource SecondaryButtonStyle}"/>
</StackPanel>
<!-- 实验特性 -->
<Expander IsExpanded="False" Margin="0,8,0,0" Header="🔬 实验特性" Foreground="{StaticResource NavisworksPrimaryBrush}">
<StackPanel Orientation="Horizontal" Margin="0,5,0,0">
<Button Content="预计算高亮"
Command="{Binding HighlightPrecomputedCollisionResultsCommand}"
IsEnabled="{Binding HasClashDetectiveResults}"
Style="{StaticResource SecondaryButtonStyle}"/>
<Button Content="清除预计算高亮"
Command="{Binding ClearPrecomputedCollisionHighlightsCommand}"
IsEnabled="{Binding HasClashDetectiveResults}"
Style="{StaticResource SecondaryButtonStyle}"/>
</StackPanel>
</Expander>
</StackPanel>
</Border>