7be2395fc3
- Cambio tema disponibile nella OptionsPageUC (necessario riavvio programma per applicarlo)
111 lines
4.5 KiB
XML
111 lines
4.5 KiB
XML
<UserControl x:Class="FastGridSlabManager"
|
|
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="853.3" d:DesignWidth="1280">
|
|
|
|
|
|
<!-- Definizione della NestPage -->
|
|
<Grid Name="FastGridSlabGrid" >
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="3*"/>
|
|
<ColumnDefinition Width="12*"/>
|
|
</Grid.ColumnDefinitions>
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="1*"/>
|
|
<RowDefinition Height="8*"/>
|
|
<RowDefinition Height="1*"/>
|
|
</Grid.RowDefinitions>
|
|
|
|
|
|
<Grid Grid.RowSpan="3">
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="2*"/>
|
|
<RowDefinition Height="1*"/>
|
|
<RowDefinition Height="2.5*"/>
|
|
<RowDefinition Height="1*"/>
|
|
<RowDefinition Height="1*"/>
|
|
<RowDefinition Height="1.5*"/>
|
|
<RowDefinition Height="1*"/>
|
|
</Grid.RowDefinitions>
|
|
|
|
<Grid Name="ParametersGrd" Grid.Row="1" Grid.ColumnSpan="2">
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="1*"/>
|
|
<ColumnDefinition Width="1*"/>
|
|
</Grid.ColumnDefinitions>
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="0.5*"/>
|
|
<RowDefinition Height="0.5*"/>
|
|
</Grid.RowDefinitions>
|
|
|
|
<TextBlock Name="OrderTxBl"
|
|
Grid.Row="0" Grid.Column="0"
|
|
Style="{DynamicResource OmagCut_CurrProjSummeryTextBlock}"/>
|
|
<EgtWPFLib:EgtTextBox Name="OrderTxBx"
|
|
Grid.Row="0" Grid.Column="1"
|
|
Margin="13,0,6,0"
|
|
Style="{DynamicResource OmagCut_KeyboardTextBox}"/>
|
|
|
|
<TextBlock Name="CurrSlabTxBl"
|
|
Grid.Row="1" Grid.Column="0"
|
|
Style="{DynamicResource OmagCut_CurrProjSummeryTextBlock}"/>
|
|
<EgtWPFLib:EgtTextBox Name="CurrSlabTxBx"
|
|
Grid.Row="1" Grid.Column="1"
|
|
Margin="13,0,6,0"
|
|
Style="{DynamicResource OmagCut_CalculatorTextBox}"/>
|
|
|
|
</Grid>
|
|
|
|
<GroupBox Name="PieceTypeGpBx"
|
|
Grid.Row="2"
|
|
Style="{DynamicResource OmagCut_GroupBox}">
|
|
<UniformGrid Rows="2">
|
|
|
|
<UniformGrid Columns="3" >
|
|
<ToggleButton Name="Type1Btn"
|
|
Style="{StaticResource OmagCut_DisabledYellowToggleButton}"/>
|
|
<ToggleButton Name="Type2Btn"
|
|
Style="{StaticResource OmagCut_DisabledYellowToggleButton}" />
|
|
<ToggleButton Name="Type3Btn"
|
|
Style="{StaticResource OmagCut_DisabledYellowToggleButton}" />
|
|
</UniformGrid>
|
|
|
|
<Grid>
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="0.5*"/>
|
|
<ColumnDefinition Width="1*"/>
|
|
<ColumnDefinition Width="1*"/>
|
|
<ColumnDefinition Width="0.5*"/>
|
|
</Grid.ColumnDefinitions>
|
|
<ToggleButton Name="Type4Btn"
|
|
Grid.Column="1"
|
|
Style="{StaticResource OmagCut_DisabledYellowToggleButton}"/>
|
|
<ToggleButton Name="Type5Btn"
|
|
Grid.Column="2"
|
|
Style="{StaticResource OmagCut_DisabledYellowToggleButton}"/>
|
|
</Grid>
|
|
|
|
</UniformGrid>
|
|
</GroupBox>
|
|
|
|
<Button Name="ConfirmOrderBtn"
|
|
Grid.Row="3"
|
|
Style="{StaticResource OmagCut_YellowTextButton}" />
|
|
|
|
<UniformGrid Grid.Row="4" Columns="2" >
|
|
<Button Name="InsertPiecesBtn"
|
|
Style="{StaticResource OmagCut_YellowTextButton}" />
|
|
<ToggleButton Name="LastSlabBtn"
|
|
Style="{StaticResource OmagCut_YellowToggleButton}" />
|
|
</UniformGrid>
|
|
|
|
</Grid>
|
|
|
|
</Grid>
|
|
|
|
</UserControl>
|