Files
egtbeamwall/EgtBEAMWALL.Optimizer/PartManager/PartManagerV.xaml
Demetrio Cassarino ff849a7708 Optimizer 2.7.11.17
-sistemato errore selezione macchina
2025-12-12 09:10:44 +01:00

69 lines
3.4 KiB
XML

<Grid 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:OPTIMIZER="clr-namespace:EgtBEAMWALL.Optimizer"
IsEnabled="{Binding PartManager_IsEnabled}"
Style="{StaticResource PartManager_Grid}">
<Grid.RowDefinitions>
<RowDefinition Height="0.2*"/>
<RowDefinition Height="0.2*"/>
</Grid.RowDefinitions>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="Auto"/>
<ColumnDefinition Width="Auto"/>
<ColumnDefinition Width="Auto"/>
</Grid.ColumnDefinitions>
<Border Grid.RowSpan="2"
Grid.ColumnSpan="3"
Style="{StaticResource Optimizer_Border}"/>
<StackPanel Style="{StaticResource PartManagers_StackPanel}">
<TextBlock Text="W"
Style="{StaticResource W_TextBlock}"/>
<EgtWPFLib5:EgtTextBox Text="{Binding Tag.sW,
RelativeSource={RelativeSource AncestorType={x:Type OPTIMIZER:PartManagerV}},
UpdateSourceTrigger=Explicit}"
Style="{StaticResource EgtPartManager_TextBox}"/>
</StackPanel>
<StackPanel Grid.Column="1"
Style="{StaticResource PartManagers_StackPanel}">
<TextBlock Text="H"
Style="{StaticResource W_TextBlock}"/>
<EgtWPFLib5:EgtTextBox Text="{Binding Tag.sH,
RelativeSource={RelativeSource AncestorType={x:Type OPTIMIZER:PartManagerV}},
UpdateSourceTrigger=Explicit}"
Style="{StaticResource EgtPartManager_TextBox}"/>
</StackPanel>
<StackPanel Grid.Column="2"
Style="{StaticResource PartManagerL_StackPanel}">
<TextBlock Text="L"
Style="{StaticResource W_TextBlock}"/>
<EgtWPFLib5:EgtTextBox Text="{Binding Tag.sL,
RelativeSource={RelativeSource AncestorType={x:Type OPTIMIZER:PartManagerV}},
UpdateSourceTrigger=Explicit}"
Style="{StaticResource EgtPartManager_TextBox}"/>
</StackPanel>
<StackPanel Grid.Row="1"
Style="{StaticResource PartManagers_StackPanel}">
<TextBlock Text="BTL Qty"
Style="{StaticResource W_TextBlock}"/>
<TextBlock Text="{Binding Tag.sCNT,
RelativeSource={RelativeSource AncestorType={x:Type OPTIMIZER:PartManagerV}},
UpdateSourceTrigger=Explicit}"
Style="{StaticResource CNT_TextBlock}"/>
</StackPanel>
<StackPanel Grid.Row="1"
Grid.Column="1"
Grid.ColumnSpan="2"
Style="{StaticResource PartManagers_StackPanel}">
<TextBlock Text="Added Qty"
Style="{StaticResource W_TextBlock}"/>
<EgtWPFLib5:EgtTextBox Text="{Binding Tag.sADDED,
RelativeSource={RelativeSource AncestorType={x:Type OPTIMIZER:PartManagerV}},
UpdateSourceTrigger=Explicit}"
ExplicitUpdateSource="EnterKeyPress"
Style="{StaticResource Qty_TextBox}"/>
</StackPanel>
</Grid>