ec6b237c59
- Aggiunto AboutBox. - Aggiunti bottoni tastatura disco e grezzo.
92 lines
3.6 KiB
XML
92 lines
3.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 superiore -->
|
|
<Grid Name="UpperButtonGrid" Grid.Column="1" >
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="4*"/>
|
|
<ColumnDefinition Width="1*"/>
|
|
<ColumnDefinition Width="7*"/>
|
|
</Grid.ColumnDefinitions>
|
|
|
|
<Button Name="MachViewModeBtn" Grid.Column="1" Content="MHT"
|
|
Style="{StaticResource OmagCut_RightGrayGradientYellowTextButton}"/>
|
|
|
|
</Grid>
|
|
|
|
<!-- 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="1*"/>
|
|
<RowDefinition Height="1*"/>
|
|
<RowDefinition Height="1*"/>
|
|
</Grid.RowDefinitions>
|
|
<Button Name="ManualBtn" Grid.Column="2" Grid.Row="0"
|
|
Style="{StaticResource OmagCut_YellowTextButton}"/>
|
|
<Button Name="SingleCutBtn" Grid.Row="1"
|
|
Style="{StaticResource OmagCut_YellowTextButton}"/>
|
|
<Button Name="MultipleCutBtn" Grid.Row="2"
|
|
Style="{StaticResource OmagCut_YellowTextButton}"/>
|
|
<Button Name="GridCutBtn" Grid.Row="3"
|
|
Style="{StaticResource OmagCut_YellowTextButton}"/>
|
|
<Button Name="SawTestBtn" Grid.Row="5"
|
|
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>
|
|
|
|
<Button Name="ManualModeBtn" Grid.Column="2"
|
|
Style="{StaticResource OmagCut_YellowGradientYellowIconButton}">
|
|
<Image Source="Resources/Manual.png" Style="{StaticResource OmagCut_ButtonIcon}"/>
|
|
</Button>
|
|
|
|
<Button Name="SawProbingBtn" Grid.Column="1"
|
|
Style="{StaticResource OmagCut_YellowGradientYellowTextButton}">
|
|
</Button>
|
|
|
|
</Grid>
|
|
|
|
</Grid>
|
|
|
|
</UserControl>
|