b31c3e1dfc
- aggiunta stampa.
82 lines
3.4 KiB
XML
82 lines
3.4 KiB
XML
<Window x:Class="MainWindow"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:local="clr-namespace:OmagVIEW"
|
|
Title="MainWindow" Height="1024" Width="1280" ResizeMode="NoResize" WindowStyle="None"
|
|
FontFamily="./Resources/Fonts/#Century Gothic"
|
|
Icon="Resources/LogoOmag.jpg">
|
|
|
|
<!-- ** Definizione della Grid della MainWindow ** -->
|
|
<Grid Name="MainWindowGrid" Background="{StaticResource OmagCut_Gray}">
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="1*"/>
|
|
<RowDefinition Height="11*"/>
|
|
</Grid.RowDefinitions>
|
|
|
|
<!-- ** Definizione della Grid della Row 0 (Barra superiore) ** -->
|
|
<Grid>
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="3*"/>
|
|
<ColumnDefinition Width="11*"/>
|
|
<ColumnDefinition Width="1*"/>
|
|
</Grid.ColumnDefinitions>
|
|
|
|
<Border Name="LogoBrd" Background="Transparent">
|
|
<Image Source="Resources/LogoOmag.jpg" Stretch="Uniform" Margin="1"/>
|
|
</Border>
|
|
|
|
<!-- ** Definizione della Grid delle tab ** -->
|
|
<Grid Name="MainTabGrid" Grid.Column="1">
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="1*"/>
|
|
<ColumnDefinition Width="7*"/>
|
|
<ColumnDefinition Width="2*"/>
|
|
<ColumnDefinition Width="1*"/>
|
|
</Grid.ColumnDefinitions>
|
|
<Button Name="OptionsBtn" Grid.Column="5" Style="{StaticResource OmagCut_BlueIconButton}">
|
|
<Image Source="Resources/Options.png" Style="{StaticResource OmagCut_ButtonIcon}"/>
|
|
</Button>
|
|
|
|
</Grid>
|
|
|
|
<Button Grid.Column="7" Style="{StaticResource OmagCut_BlueIconButton}" Click="ExitBtn_Click">
|
|
<Image Source="Resources/X.png" Style="{StaticResource OmagCut_ButtonIcon}"/>
|
|
</Button>
|
|
|
|
</Grid>
|
|
|
|
<Grid Name="SceneGrid" Grid.Row="1">
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="3*"/>
|
|
<ColumnDefinition Width="12*"/>
|
|
</Grid.ColumnDefinitions>
|
|
<Grid>
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="1.5*"/>
|
|
<RowDefinition Height="1.5*"/>
|
|
<RowDefinition Height="1.5*"/>
|
|
<RowDefinition Height="1.5*"/>
|
|
<RowDefinition Height="1.5*"/>
|
|
<RowDefinition Height="1.5*"/>
|
|
<RowDefinition Height="1*"/>
|
|
</Grid.RowDefinitions>
|
|
|
|
<Button Name="OkAllBtn" Grid.Row="0" Style="{StaticResource OmagCut_GreenTextButton}"
|
|
FontSize="32"/>
|
|
<Button Name="OkPartBtn" Grid.Row="1" Style="{StaticResource OmagCut_GreenTextButton}"
|
|
FontSize="32"/>
|
|
<Button Name="RuinedPartBtn" Grid.Row="2" Style="{StaticResource OmagCut_RedTextButton}"
|
|
FontSize="32"/>
|
|
<Button Name="PrintBtn" Grid.Row="3" Style="{StaticResource OmagCut_BlueTextButton}"
|
|
FontSize="32"/>
|
|
<Button Name="LabelBtn" Grid.Row="4" Style="{StaticResource OmagCut_BlueTextButton}"
|
|
FontSize="32"/>
|
|
<Button Name="ConfirmBtn" Grid.Row="5" Style="{StaticResource OmagCut_BlueTextButton}"
|
|
FontSize="32"/>
|
|
</Grid>
|
|
</Grid>
|
|
|
|
</Grid>
|
|
|
|
</Window>
|