Files
egtbeamwall/EgtBEAMWALL.Optimizer/NestingRunningWnd/NestingRunningWndV.xaml
T
Demetrio Cassarino 059b45043d Optimizer 2.7.11.6
-sistemato dizionario e grafica
2025-11-14 14:56:40 +01:00

49 lines
2.2 KiB
XML

<EgtBEAMWALLCORE:OptimizerWindow x:Class="NestingRunningWndV"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:EgtBEAMWALLCORE="clr-namespace:EgtBEAMWALL.Core;assembly=EgtBEAMWALL.Core"
WindowStartupLocation="CenterOwner"
Height="200" Width="300"
ShowInTaskbar="False"
Style="{StaticResource OptimizerWindow.Dialog}">
<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 NestingRunningWndV_TextBlock}"/>
<TextBlock Grid.Row="2"
Text="{Binding Nesting_Msg}"
Style="{StaticResource NestingRunningWndV_TextBlock}"/>
<ProgressBar Grid.Row="4"
Value="{Binding CurrProgress_Value}"
Style="{StaticResource NestingRunningWndV_ProgressBar}"/>
<ProgressBar Grid.Row="6"
Value="{Binding TotProgress_Value}"
Style="{StaticResource NestingRunningWndV_ProgressBar}"/>
<TextBlock Grid.Row="8"
Text="{Binding TotProgress_Msg}"
Style="{StaticResource NestingRunningWndV_TextBlock}"/>
<Button Grid.Row="10"
Content="Cancel"
IsDefault="False"
IsCancel="True"
Command="{Binding Cancel_Command}"
Style="{StaticResource NestingRunningWndV_Button}"/>
</Grid>
</EgtBEAMWALLCORE:OptimizerWindow>