Files
egtbeamwall/EgtBEAMWALL.ViewerOptimizer/StatisticsTimePanel/OnlyProdStatisticsTimePanelV.xaml
T
Demetrio Cassarino 80f06890c4 -modificato stile configuration page,
-aggiunto onlyprodmachinepanel e onlyprodpdfeditor
2024-05-27 16:56:40 +02:00

37 lines
2.5 KiB
XML

<EgtFloating:EgtFloatingPanel x:Class="OnlyProdStatisticsTimePanelV"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:EgtFloating="clr-namespace:EgtWPFLib5.EgtFloating;assembly=EgtWPFLib5"
xmlns:EgtBEAMWALL="clr-namespace:EgtBEAMWALL.ViewerOptimizer"
IsTopDockable="True" IsBottomDockable="False" IsLeftDockable="False"
IsRightDockable="False"
IsEnabled="{Binding ProjManager_IsEnabled}"
Style="{StaticResource ToolBar_EgtFloatingPanel_OnlyProd}">
<Border ToolTip="{Binding TotalTime_ToolTip}"
Visibility="{Binding ViewPage_Visibility}"
Style="{StaticResource OnlyProdTotalTimeOTT_Border}">
<TextBlock Text="{Binding Tag.BTLStructureVM.sBTLTotTime, RelativeSource={RelativeSource AncestorType={x:Type EgtBEAMWALL:OnlyProdStatisticsTimePanelV}}}"
Style="{StaticResource OnlyProdStatisticTimePanel_TextBlock}"/>
</Border>
<Border ToolTip="{Binding TotalTime_ToolTip}"
Visibility="{Binding MachiningPage_Visibility}"
Style="{StaticResource OnlyProdTotalTimeOTT_Border}">
<TextBlock Text="{Binding Tag.MachGroupPanelVM.sTotEstimatedTime, RelativeSource={RelativeSource AncestorType={x:Type EgtBEAMWALL:OnlyProdStatisticsTimePanelV}}}"
Style="{StaticResource OnlyProdStatisticTimePanel_TextBlock}"/>
</Border>
<Border ToolTip="{Binding DoneTime_ToolTip}"
Visibility="{Binding MachiningPage_Visibility}"
Style="{StaticResource OnlyProdDoneTime_Border}">
<TextBlock Text="{Binding Tag.MachGroupPanelVM.sDoneTime, RelativeSource={RelativeSource AncestorType={x:Type EgtBEAMWALL:OnlyProdStatisticsTimePanelV}}}"
Style="{StaticResource OnlyProdStatisticTimePanel_TextBlock}"/>
</Border>
<Border ToolTip="{Binding RemainingTime_ToolTip}"
Visibility="{Binding MachiningPage_Visibility}"
Style="{StaticResource OnlyProdRemainingTime_Border}">
<TextBlock Text="{Binding Tag.MachGroupPanelVM.sRemainingTime, RelativeSource={RelativeSource AncestorType={x:Type EgtBEAMWALL:OnlyProdStatisticsTimePanelV}}}"
Style="{StaticResource OnlyProdStatisticTimePanel_TextBlock}"/>
</Border>
</EgtFloating:EgtFloatingPanel>