Files
egtbeamwall/EgtBEAMWALL.Optimizer/StatisticsTimePanel/StatisticsTimePanelV.xaml
T
Demetrio Cassarino 37a5029bf4 Optimizer 3.0.1.3
-sistemato visualizzazione tempi calcolo
-sistemato visualizzazione pulsante assemblato
2026-01-16 16:49:34 +01:00

29 lines
1.7 KiB
XML

<StackPanel x:Class="StatisticsTimePanelV"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:OPTIMIZER="clr-namespace:EgtBEAMWALL.Optimizer"
Style="{StaticResource PartManager_StackPanel}">
<Border ToolTip="{Binding TotalTime_ToolTip}"
Style="{StaticResource TotalTime_Border}">
<TextBlock Text="{Binding Tag.BTLStructureVM.sBTLTotTime, RelativeSource={RelativeSource AncestorType={x:Type OPTIMIZER:StatisticsTimePanelV}}}"
Style="{StaticResource StatisticTimePanel_TextBlock}"/>
</Border>
<Border ToolTip="{Binding TotalTime_ToolTip}"
Style="{StaticResource TotalTime_Border}">
<TextBlock Text="{Binding Tag.MachGroupPanelVM.sTotEstimatedTime, RelativeSource={RelativeSource AncestorType={x:Type OPTIMIZER:StatisticsTimePanelV}}}"
Style="{StaticResource StatisticTimePanel_TextBlock}"/>
</Border>
<Border ToolTip="{Binding DoneTime_ToolTip}"
Style="{StaticResource DoneTime_Border}">
<TextBlock Text="{Binding Tag.MachGroupPanelVM.sDoneTime, RelativeSource={RelativeSource AncestorType={x:Type OPTIMIZER:StatisticsTimePanelV}}}"
Style="{StaticResource StatisticTimePanel_TextBlock}"/>
</Border>
<Border ToolTip="{Binding RemainingTime_ToolTip}"
Style="{StaticResource RemainingTime_Border}">
<TextBlock Text="{Binding Tag.MachGroupPanelVM.sRemainingTime, RelativeSource={RelativeSource AncestorType={x:Type OPTIMIZER:StatisticsTimePanelV}}}"
Style="{StaticResource StatisticTimePanel_TextBlock}"/>
</Border>
</StackPanel>