53 lines
2.6 KiB
XML
53 lines
2.6 KiB
XML
<UserControl x:Class="FiloTopUC"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:EgtWPFLib="clr-namespace:EgtWPFLib;assembly=EgtWPFLib"
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
mc:Ignorable="d"
|
|
d:DesignHeight="597.1" d:DesignWidth="255.9">
|
|
|
|
<!-- Definizione della Grid Laterale -->
|
|
<Grid Name="VariablesCompoGrid" Grid.RowSpan="2">
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="1.8*"/>
|
|
<ColumnDefinition Width="1.2*"/>
|
|
</Grid.ColumnDefinitions>
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="0.5*"/>
|
|
<RowDefinition Height="0.5*"/>
|
|
<RowDefinition Height="0.5*"/>
|
|
<RowDefinition Height="0.5*"/>
|
|
<RowDefinition Height="0.5*"/>
|
|
<RowDefinition Height="0.5*"/>
|
|
<RowDefinition Height="0.5*"/>
|
|
<RowDefinition Height="0.5*"/>
|
|
<RowDefinition Height="0.5*"/>
|
|
<RowDefinition Height="0.5*"/>
|
|
<RowDefinition Height="0.5*"/>
|
|
<RowDefinition Height="0.5*"/>
|
|
<RowDefinition Height="0.5*"/>
|
|
<RowDefinition Height="0.5*"/>
|
|
</Grid.RowDefinitions>
|
|
|
|
|
|
<TextBlock Name="ParameterTxBl" Grid.Row="10" Text="Offset"
|
|
Style="{DynamicResource OmagCut_CenteredLowerCaseCharacterTextBlock}"
|
|
FontSize="{DynamicResource FontSize_LowerCaseCharacter}"/>
|
|
<EgtWPFLib:EgtTextBox Name="ParameterTxBx" Grid.Column="1" Grid.Row="10" Width="90"
|
|
Style="{DynamicResource OmagCut_CalculatorTextBox}"/>
|
|
<TextBlock Name="Parameter2TxBl" Grid.Row="11" Text="Affondamento"
|
|
Style="{DynamicResource OmagCut_CenteredLowerCaseCharacterTextBlock}"
|
|
FontSize="{DynamicResource FontSize_LowerCaseCharacter}"/>
|
|
<EgtWPFLib:EgtTextBox Name="Parameter2TxBx" Grid.Column="1" Grid.Row="11" Width="90"
|
|
Style="{DynamicResource OmagCut_CalculatorTextBox}"/>
|
|
<TextBlock Name="Parameter3TxBl" Grid.Row="12" Text="Arrotonda"
|
|
Style="{DynamicResource OmagCut_CenteredLowerCaseCharacterTextBlock}"
|
|
FontSize="{DynamicResource FontSize_LowerCaseCharacter}"/>
|
|
<CheckBox Name="Parameter3ChBx" Grid.Row="12" Grid.Column="1"
|
|
Style="{DynamicResource OmagCut_CheckBox_Single}"
|
|
HorizontalAlignment="Center" Margin="0,0,6,0"/>
|
|
</Grid>
|
|
|
|
</UserControl>
|