Files
egtbeamwall/EgtBEAMWALL.ViewerOptimizer/NestingRunningWnd/NestingRunningWndV.xaml
T
Emmanuele Sassi 42fc5935f3 - Miglioramenti nesting
- Miglioramenti vinestra avanzamento nesting
2021-10-14 12:23:23 +02:00

55 lines
2.2 KiB
XML

<EgtWPFLib5:EgtCustomWindow x:Class="NestingRunningWndV"
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}"
TextAlignment="Center"/>
<TextBlock Grid.Row="2"
Text="{Binding Nesting_Msg}"
TextAlignment="Center"/>
<ProgressBar Grid.Row="4"
Minimum="0"
Maximum="100"
Value="{Binding CurrProgress_Value}"
Height="20"
Margin="40,0,40,0"/>
<ProgressBar Grid.Row="6"
Minimum="0"
Maximum="100"
Value="{Binding TotProgress_Value}"
Height="20"
Margin="40,0,40,0"/>
<TextBlock Grid.Row="8"
Text="{Binding TotProgress_Msg}"
TextAlignment="Center"/>
<Button Grid.Row="10" Content="Cancel"
IsDefault="False"
IsCancel="True"
Width="70"
Style="{StaticResource ToolBar_Button}"
Command="{Binding Cancel_Command}"/>
</Grid>
</EgtWPFLib5:EgtCustomWindow>