c93e032fea
- Cambiata gestione lingue. - Iniziato sviluppo DirectCut.
72 lines
3.6 KiB
XML
72 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">
|
|
|
|
<!-- 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 inferiore -->
|
|
<Grid Name="LeftButtonGrid" Grid.Row="1" >
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="1*"/>
|
|
<ColumnDefinition Width="2*"/>
|
|
</Grid.ColumnDefinitions>
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="1*"/>
|
|
<RowDefinition Height="2*"/>
|
|
<RowDefinition Height="1*"/>
|
|
<RowDefinition Height="1*"/>
|
|
<RowDefinition Height="1*"/>
|
|
<RowDefinition Height="1*"/>
|
|
<RowDefinition Height="1*"/>
|
|
</Grid.RowDefinitions>
|
|
<Button Name="FirstAxisBtn" Grid.Row="2" FontSize="22" Content="X" Height="60" Width="60" />
|
|
<TextBox Name="FirstAxisTxBx" Grid.Column="1" Grid.Row="2" FontSize="20" HorizontalAlignment="Center"
|
|
VerticalAlignment="Center" Width="150" TextAlignment="Center" Style="{StaticResource NumericKeyboard}" />
|
|
<Button Name="SecondAxisBtn" Grid.Row="3" FontSize="22" Content="Y" Height="60" Width="60"/>
|
|
<TextBox Name="SecondAxisTxBx" Grid.Column="1" Grid.Row="3" FontSize="20" HorizontalAlignment="Center"
|
|
VerticalAlignment="Center" Width="150" TextAlignment="Center" Style="{StaticResource NumericKeyboard}" />
|
|
<Button Name="ThirdAxisBtn" Grid.Row="4" FontSize="22" Content="Z" Height="60" Width="60"/>
|
|
<TextBox Name="ThirdAxisTxBx" Grid.Column="1" Grid.Row="4" FontSize="20" HorizontalAlignment="Center"
|
|
VerticalAlignment="Center" Width="150" TextAlignment="Center" Style="{StaticResource NumericKeyboard}" />
|
|
<Button Name="FourthAxisBtn" Grid.Row="5" FontSize="22" Content="C" Height="60" Width="60"/>
|
|
<TextBox Name="FourthAxisTxBx" Grid.Column="1" Grid.Row="5" FontSize="20" HorizontalAlignment="Center"
|
|
VerticalAlignment="Center" Width="150" TextAlignment="Center" Style="{StaticResource NumericKeyboard}" />
|
|
<Button Name="FifthAxisBtn" Grid.Row="6" FontSize="22" Content="B" Height="60" Width="60"/>
|
|
<TextBox Name="FifthAxisTxBx" Grid.Column="1" Grid.Row="6" FontSize="20" HorizontalAlignment="Center"
|
|
VerticalAlignment="Center" Width="150" TextAlignment="Center" Style="{StaticResource NumericKeyboard}" />
|
|
|
|
</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>
|
|
|
|
</Grid>
|
|
|
|
</Grid>
|
|
|
|
</UserControl>
|