1ab69a9cf3
-aggiornato finestre con nuova egwbaselib
46 lines
2.1 KiB
XML
46 lines
2.1 KiB
XML
<EgtBEAMWALLCORE:OptimizerWindow x:Class="MultiCopyRawPartWndV"
|
|
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:EgtBEAMWALLCORE="clr-namespace:EgtBEAMWALL.Core;assembly=EgtBEAMWALL.Core"
|
|
SizeToContent="WidthAndHeight"
|
|
WindowStartupLocation="CenterOwner"
|
|
Title="MultiCopyRawPart"
|
|
Style="{StaticResource OptimizerWindow.Dialog.NoClose}">
|
|
|
|
<Grid Style="{StaticResource AddRawPartWnd_Grid}">
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="Auto"/>
|
|
<RowDefinition Height="Auto"/>
|
|
<RowDefinition Height="Auto"/>
|
|
</Grid.RowDefinitions>
|
|
|
|
<TextBlock Text="{Binding ChooseQty_Msg}"
|
|
Style="{StaticResource MultiCopyRawPartWnd_TextBlock}"/>
|
|
<EgtWPFLib5:EgtTextBox Grid.Row="1"
|
|
Text="{Binding nQuantity}"
|
|
Style="{StaticResource MultiCopyRawPartWnd_TextBox}"/>
|
|
|
|
<Grid Grid.Row="2"
|
|
Style="{StaticResource AddPartWnd_Grid}">
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="1*"/>
|
|
<ColumnDefinition Width="Auto"/>
|
|
<ColumnDefinition Width="1*"/>
|
|
<ColumnDefinition Width="Auto"/>
|
|
<ColumnDefinition Width="1*"/>
|
|
</Grid.ColumnDefinitions>
|
|
<Button Grid.Column="1"
|
|
Content="{Binding Ok_Msg}"
|
|
Command="{Binding Ok_Command}"
|
|
IsDefault="True"
|
|
Style="{StaticResource EgtWPFLib5_Button}"/>
|
|
<Button Grid.Column="3"
|
|
Content="{Binding Cancel_Msg}"
|
|
IsCancel="True"
|
|
Style="{StaticResource EgtWPFLib5_Button}"/>
|
|
</Grid>
|
|
</Grid>
|
|
|
|
</EgtBEAMWALLCORE:OptimizerWindow>
|