Files
egtbeamwall/EgtBEAMWALL.ViewerOptimizer/NestingRunningWnd/NestingRunningWndV.xaml
T
2021-10-08 12:47:27 +02:00

38 lines
1.6 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="1*"/>
<RowDefinition Height="Auto"/>
<RowDefinition Height="1*"/>
<RowDefinition Height="Auto"/>
<RowDefinition Height="1*"/>
</Grid.RowDefinitions>
<TextBlock Grid.Row="1"
Text="{Binding NestingRunning_Msg}"
TextAlignment="Center"/>
<ProgressBar Grid.Row="3"
Minimum="0"
Maximum="100"
Value="{Binding Progress_Value}"
Height="20"
Margin="40,0,40,0"/>
<Button Grid.Row="5" Content="Cancel"
IsDefault="False"
IsCancel="True"
Width="70"
Style="{StaticResource ToolBar_Button}"
Command="{Binding Cancel_Command}"/>
</Grid>
</EgtWPFLib5:EgtCustomWindow>