Files
egtbeamwall/EgtBEAMWALL.ViewerOptimizer/StatisticsTimePanel/StatisticsTimePanelV.xaml
T
Emmanuele Sassi 4685717a8a - Implementazione comunicazione Axium PcToolkit
- Aggiornato scarto grezzi per travi e pareti
- Aggiunto tempo reale pezzi gia' prodotti
- Correzione in dialogo open
- Nascoste tutte le finestre del programma da taskbar tranne la principale
- Stampa pdf in ottimizzazione stampa solo i dati di ottimizzazione
- Aggiunti tempi di stimati o reali in view e optim
2022-05-13 12:52:04 +02:00

59 lines
2.8 KiB
XML

<EgtFloating:EgtFloatingPanel x:Class="StatisticsTimePanelV"
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}">
<Border BorderThickness="2"
BorderBrush="Crimson"
Background="{StaticResource Omag_LightGray}"
Padding="5,0,5,0"
Margin="2"
VerticalAlignment="Center"
Visibility="{Binding ViewPage_Visibility}">
<TextBlock Text="{Binding Tag.BTLStructureVM.sBTLTotTime, RelativeSource={RelativeSource AncestorType={x:Type EgtBEAMWALL:StatisticsTimePanelV}}}"
FontSize="19"
Foreground="Crimson"
VerticalAlignment="Center"/>
</Border>
<Border BorderThickness="2"
BorderBrush="Crimson"
Background="{StaticResource Omag_LightGray}"
Padding="5,0,5,0"
Margin="2"
VerticalAlignment="Center"
Visibility="{Binding MachiningPage_Visibility}">
<TextBlock Text="{Binding Tag.MachGroupPanelVM.sTotEstimatedTime, RelativeSource={RelativeSource AncestorType={x:Type EgtBEAMWALL:StatisticsTimePanelV}}}"
FontSize="19"
Foreground="Crimson"
VerticalAlignment="Center"/>
</Border>
<Border BorderThickness="2"
BorderBrush="Gold"
Padding="5,0,5,0"
Margin="2"
VerticalAlignment="Center"
Visibility="{Binding MachiningPage_Visibility}">
<TextBlock Text="{Binding Tag.MachGroupPanelVM.sDoneTime, RelativeSource={RelativeSource AncestorType={x:Type EgtBEAMWALL:StatisticsTimePanelV}}}"
FontSize="19"
Foreground="Gold"
VerticalAlignment="Center"/>
</Border>
<Border BorderThickness="2"
BorderBrush="White"
Padding="5,0,5,0"
Margin="2"
VerticalAlignment="Center"
Visibility="{Binding MachiningPage_Visibility}">
<TextBlock Text="{Binding Tag.MachGroupPanelVM.sRemainingTime, RelativeSource={RelativeSource AncestorType={x:Type EgtBEAMWALL:StatisticsTimePanelV}}}"
FontSize="19"
Foreground="White"
VerticalAlignment="Center"/>
</Border>
</EgtFloating:EgtFloatingPanel>