891bbd4a08
Corretta sezione Rimossa selezione grezzo Gestione blocco interfaccia su verifica e simula Aggiunta correzione con cancellazione cartelle progetti Tolto ricaricmento progetto nel passaggio da proj a prod Iniziat studio esportazione statistiche Migliorati messaggi su nesting Cambiata gestione tipo progetto
79 lines
4.2 KiB
XML
79 lines
4.2 KiB
XML
<StackPanel x:Class="PartManagerV"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:EgtWPFLib5="clr-namespace:EgtWPFLib5;assembly=EgtWPFLib5"
|
|
xmlns:EgtBEAMWALL="clr-namespace:EgtBEAMWALL.ViewerOptimizer"
|
|
Orientation="Horizontal"
|
|
Height="28"
|
|
IsEnabled="{Binding PartManager_IsEnabled}">
|
|
|
|
<TextBlock Text="BTL Qty"
|
|
Style="{StaticResource OptionTextBlock}"/>
|
|
<TextBlock Text="{Binding Tag.sCNT,
|
|
RelativeSource={RelativeSource AncestorType={x:Type EgtBEAMWALL:PartManagerV}},
|
|
UpdateSourceTrigger=Explicit}"
|
|
Width="25"
|
|
Style="{StaticResource OptionTextBlock}"/>
|
|
<TextBlock Text="Added Qty"
|
|
Style="{StaticResource OptionTextBlock}"/>
|
|
<EgtWPFLib5:EgtTextBox Text="{Binding Tag.sADDED,
|
|
RelativeSource={RelativeSource AncestorType={x:Type EgtBEAMWALL:PartManagerV}},
|
|
UpdateSourceTrigger=Explicit}"
|
|
Width="25"/>
|
|
<TextBlock Text="W"
|
|
Style="{StaticResource OptionTextBlock}"/>
|
|
<EgtWPFLib5:EgtTextBox Text="{Binding Tag.sW,
|
|
RelativeSource={RelativeSource AncestorType={x:Type EgtBEAMWALL:PartManagerV}},
|
|
UpdateSourceTrigger=Explicit}" Width="45"/>
|
|
<TextBlock Text="H"
|
|
Style="{StaticResource OptionTextBlock}"/>
|
|
<EgtWPFLib5:EgtTextBox Text="{Binding Tag.sH,
|
|
RelativeSource={RelativeSource AncestorType={x:Type EgtBEAMWALL:PartManagerV}},
|
|
UpdateSourceTrigger=Explicit}" Width="45"/>
|
|
<TextBlock Text="L"
|
|
Style="{StaticResource OptionTextBlock}"/>
|
|
<EgtWPFLib5:EgtTextBox Text="{Binding Tag.sL,
|
|
RelativeSource={RelativeSource AncestorType={x:Type EgtBEAMWALL:PartManagerV}},
|
|
UpdateSourceTrigger=Explicit}" Width="65"/>
|
|
<TextBlock Text="Inverti"
|
|
Style="{StaticResource OptionTextBlock}"
|
|
Margin="10,0,0,0"/>
|
|
<Button Content="<"
|
|
Command="{Binding Tag.Invert_Command,
|
|
RelativeSource={RelativeSource AncestorType={x:Type EgtBEAMWALL:PartManagerV}}}"
|
|
Style="{StaticResource ToolBar_SmallButton}"
|
|
Margin="5,0,0,0"/>
|
|
<TextBlock Text="{Binding Tag.sINVERTED,
|
|
RelativeSource={RelativeSource AncestorType={x:Type EgtBEAMWALL:PartManagerV}}}"
|
|
TextAlignment="Center"
|
|
Width="25"
|
|
Style="{StaticResource OptionTextBlock}"/>
|
|
<Button Content=">"
|
|
Command="{Binding Tag.Invert_Command,
|
|
RelativeSource={RelativeSource AncestorType={x:Type EgtBEAMWALL:PartManagerV}}}"
|
|
Style="{StaticResource ToolBar_SmallButton}"
|
|
Margin="0,0,5,0"/>
|
|
<TextBlock Text="Ruota"
|
|
Style="{StaticResource OptionTextBlock}"
|
|
Margin="10,0,0,0"/>
|
|
<Button Content="<"
|
|
Command="{Binding Tag.BackRotation_Command,
|
|
RelativeSource={RelativeSource AncestorType={x:Type EgtBEAMWALL:PartManagerV}}}"
|
|
Style="{StaticResource ToolBar_SmallButton}"
|
|
Margin="5,0,0,0"/>
|
|
<TextBlock Text="{Binding Tag.sROTATED,
|
|
RelativeSource={RelativeSource AncestorType={x:Type EgtBEAMWALL:PartManagerV}}}"
|
|
TextAlignment="Center"
|
|
Width="25"
|
|
Style="{StaticResource OptionTextBlock}"/>
|
|
<Button Content=">"
|
|
Command="{Binding Tag.ForwardRotation_Command,
|
|
RelativeSource={RelativeSource AncestorType={x:Type EgtBEAMWALL:PartManagerV}}}"
|
|
Style="{StaticResource ToolBar_SmallButton}"
|
|
Margin="0,0,10,0"/>
|
|
<TextBlock Text="{Binding Tag.sNAM,
|
|
RelativeSource={RelativeSource AncestorType={x:Type EgtBEAMWALL:PartManagerV}}}"
|
|
Style="{StaticResource OptionTextBlock}"/>
|
|
|
|
</StackPanel>
|