37a5029bf4
-sistemato visualizzazione tempi calcolo -sistemato visualizzazione pulsante assemblato
29 lines
1.7 KiB
XML
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>
|