36359e7fcc
- Aggiunto UC per taglio singolo in tagli diretti - Aggiunto UC ManualAxesMove con comandi per muovere gli assi.
58 lines
2.2 KiB
XML
58 lines
2.2 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">
|
|
|
|
<!-- 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="5*"/>
|
|
</Grid.RowDefinitions>
|
|
<Button Name="SingleCutBtn" Grid.Row="0" FontSize="22" Content="Taglio singolo"/>
|
|
<Button Name="Cut2PBtn" Grid.Row="1" FontSize="22" Content="Taglio per due punti"/>
|
|
</Grid>
|
|
</Grid>
|
|
|
|
<!-- Definizione della Grid inferiore -->
|
|
<Grid Name="LowerButtonGrid" Grid.ColumnSpan="2" Grid.Row="2" >
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="13*"/>
|
|
<ColumnDefinition Width="1*"/>
|
|
<ColumnDefinition Width="1*"/>
|
|
</Grid.ColumnDefinitions>
|
|
<ToggleButton Name="ManualBtn" Grid.Column="2" Grid.Row="6" FontSize="22" Content="Manual"/>
|
|
</Grid>
|
|
|
|
</Grid>
|
|
|
|
</UserControl>
|