81e801c698
- Aggiunti tagli multipli. - Iniziati tagli griglia.
65 lines
2.6 KiB
XML
65 lines
2.6 KiB
XML
<UserControl x:Class="DirectCutPageUC"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
mc:Ignorable="d"
|
|
d:DesignHeight="853.3" d:DesignWidth="1280" Initialized="DirectCutPage_Initialized" Loaded="DirectCutPage_Loaded" Unloaded="DirectCutPage_Unloaded">
|
|
|
|
<!-- Chiamata al Dictionary -->
|
|
<UserControl.Resources>
|
|
<ResourceDictionary Source="OmagCutDictionary.xaml"/>
|
|
</UserControl.Resources>
|
|
|
|
<!-- Definizione della DirectCutPage -->
|
|
<Grid Name="DirectCutPageGrid" >
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="3*"/>
|
|
<ColumnDefinition Width="12*"/>
|
|
</Grid.ColumnDefinitions>
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="1*"/>
|
|
<RowDefinition Height="8*"/>
|
|
<RowDefinition Height="1*"/>
|
|
</Grid.RowDefinitions>
|
|
|
|
<!-- Definizione della Grid laterale -->
|
|
<Grid Name="LeftButtonGrid" Grid.Row="1" >
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="1*"/>
|
|
<RowDefinition Height="7*"/>
|
|
</Grid.RowDefinitions>
|
|
|
|
<!-- Definizione della Grid laterale -->
|
|
<Grid Name="CutTypeGrid" Grid.Row="1" >
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="1*"/>
|
|
<RowDefinition Height="1*"/>
|
|
<RowDefinition Height="1*"/>
|
|
<RowDefinition Height="1*"/>
|
|
<RowDefinition Height="3*"/>
|
|
</Grid.RowDefinitions>
|
|
<Button Name="ManualBtn" Grid.Column="2" Grid.Row="0" Content="Movimento manuale"
|
|
Style="{StaticResource OmagCut_YellowTextButton}"/>
|
|
<Button Name="SingleCutBtn" Grid.Row="1" Content="Taglio singolo"
|
|
Style="{StaticResource OmagCut_YellowTextButton}"/>
|
|
<Button Name="MultipleCutBtn" Grid.Row="2" Content="Taglio multiplo"
|
|
Style="{StaticResource OmagCut_YellowTextButton}"/>
|
|
<Button Name="GridCutBtn" Grid.Row="3" Content="Taglio griglia"
|
|
Style="{StaticResource OmagCut_YellowTextButton}"/>
|
|
</Grid>
|
|
</Grid>
|
|
|
|
<!-- Definizione della Grid inferiore -->
|
|
<Grid Name="LowerButtonGrid" Grid.Column="1" Grid.Row="2" >
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="10*"/>
|
|
<ColumnDefinition Width="1*"/>
|
|
<ColumnDefinition Width="1*"/>
|
|
</Grid.ColumnDefinitions>
|
|
</Grid>
|
|
|
|
</Grid>
|
|
|
|
</UserControl>
|