3c4cee8bd7
- aggiunta gestione più tavole con relative sovratavole - riportata correzione a movimento pezzi con ventose da OmagCUT.
57 lines
2.0 KiB
XML
57 lines
2.0 KiB
XML
<EgtWPFLib5:EgtCustomWindow x:Class="SelectTableWindowV"
|
|
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"
|
|
IsClosable="False"
|
|
IsMinimizable="False"
|
|
ShowInTaskbar="False"
|
|
Style="{DynamicResource {x:Type EgtWPFLib5:EgtCustomWindow}}"
|
|
SizeToContent="WidthAndHeight"
|
|
Title="{Binding Title}"
|
|
WindowStartupLocation="CenterOwner" ResizeMode="NoResize">
|
|
|
|
<Grid HorizontalAlignment="Center"
|
|
VerticalAlignment="Center"
|
|
Margin="10,10,10,20">
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="Auto"/>
|
|
<ColumnDefinition Width="Auto"/>
|
|
<ColumnDefinition Width="Auto"/>
|
|
</Grid.ColumnDefinitions>
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="1*"/>
|
|
<RowDefinition Height="1*"/>
|
|
</Grid.RowDefinitions>
|
|
|
|
<TextBlock Text="{Binding WndMsg}"
|
|
FontSize="18"
|
|
Grid.ColumnSpan="3"
|
|
Margin="0,0,0,10"/>
|
|
|
|
<Button Grid.Column="0" Grid.Row="1"
|
|
Content="1" FontSize="40"
|
|
Style="{StaticResource OptionPanel_NestingButton}"
|
|
Command="{Binding Table_Command}"
|
|
CommandParameter="1"
|
|
Margin="10,0,10,0">
|
|
</Button>
|
|
<Button Grid.Column="1" Grid.Row="1"
|
|
Content="2" FontSize="40"
|
|
Style="{StaticResource OptionPanel_NestingButton}"
|
|
Command="{Binding Table_Command}"
|
|
CommandParameter="2"
|
|
Margin="10,0,10,0">
|
|
</Button>
|
|
<Button Grid.Column="2" Grid.Row="1"
|
|
Content="3" FontSize="40"
|
|
Style="{StaticResource OptionPanel_NestingButton}"
|
|
Command="{Binding Table_Command}"
|
|
CommandParameter="3"
|
|
Visibility="{Binding Table3_Visibility}"
|
|
Margin="10,0,10,0">
|
|
</Button>
|
|
|
|
</Grid>
|
|
|
|
</EgtWPFLib5:EgtCustomWindow>
|