Files
egtbeamwall/EgtBEAMWALL.Optimizer/NestingRunningWnd/OnlyProdNestingRunningWndV.xaml
T
Emmanuele Sassi 13b2dd29d1 - aggiunta proprieta proj su pezzi
- aggiunto progetto Optimizer
2025-04-05 12:59:22 +02:00

49 lines
2.2 KiB
XML

<EgtWPFLib5:EgtCustomWindow x:Class="OnlyProdNestingRunningWndV"
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"
Style="{DynamicResource {x:Type EgtWPFLib5:EgtCustomWindow}}"
Height="200" Width="300"
IsClosable="False" IsMinimizable="False"
WindowStartupLocation="CenterOwner" ShowInTaskbar="False">
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="1*"/>
<RowDefinition Height="Auto"/>
<RowDefinition Height="Auto"/>
<RowDefinition Height="1*"/>
<RowDefinition Height="Auto"/>
<RowDefinition Height="1*"/>
<RowDefinition Height="Auto"/>
<RowDefinition Height="1*"/>
<RowDefinition Height="Auto"/>
<RowDefinition Height="1*"/>
<RowDefinition Height="Auto"/>
<RowDefinition Height="1*"/>
</Grid.RowDefinitions>
<TextBlock Grid.Row="1"
Text="{Binding Section_Msg}"
Style="{StaticResource OnlyProdNestingRunningWndV_TextBlock}"/>
<TextBlock Grid.Row="2"
Text="{Binding Nesting_Msg}"
Style="{StaticResource OnlyProdNestingRunningWndV_TextBlock}"/>
<ProgressBar Grid.Row="4"
Value="{Binding CurrProgress_Value}"
Style="{StaticResource OnlyProdNestingRunningWndV_ProgressBar}"/>
<ProgressBar Grid.Row="6"
Value="{Binding TotProgress_Value}"
Style="{StaticResource OnlyProdNestingRunningWndV_ProgressBar}"/>
<TextBlock Grid.Row="8"
Text="{Binding TotProgress_Msg}"
Style="{StaticResource OnlyProdNestingRunningWndV_TextBlock}"/>
<Button Grid.Row="10"
Content="Cancel"
IsDefault="False"
IsCancel="True"
Command="{Binding Cancel_Command}"
Style="{StaticResource OnlyProdNestingRunningWndV_Button}"/>
</Grid>
</EgtWPFLib5:EgtCustomWindow>