Files
OmagVIEWPlus/MainWindow/MainWindowV.xaml
T
Nicola Pievani 98b6563e57 OmagVIEWPlus 2.2k1:
-> verificate coordinate di prelievo e deposito (Tab1 e Tab2)
-> scatta foto
-> gestione di preparazione pallet (nesting 1d)
-> gestione mancato vuoto su tavola 1
-> gestione di mancato vuoto tavola 2.
2020-11-20 19:48:51 +00:00

41 lines
2.1 KiB
XML

<EgtWPFLib5:EgtCustomWindow x:Class="MainWindowV"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:EgtWPFLib5="clr-namespace:EgtWPFLib5;assembly=EgtWPFLib5"
xmlns:OmagVIEWPlus="clr-namespace:OmagVIEWPlus"
DataContext="{StaticResource MainWindowVM}"
Style="{DynamicResource {x:Type EgtWPFLib5:EgtCustomWindow}}"
Title="{Binding Title}"
Icon="/Resources/OmagVIEWPlus.ico"
MinHeight="600" MinWidth="800"
AboutBoxCommand="{Binding AboutBoxCommand}"
WindowStyle="None" ResizeMode="NoResize"
CloseCommand="{Binding CloseApplicationCommand,Mode=OneWay,UpdateSourceTrigger=PropertyChanged}">
<!--Pannello principale -->
<DockPanel LastChildFill="True" Background="Gray">
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="50"/>
<RowDefinition Height="50"/>
</Grid.RowDefinitions>
<!--<ToggleButton Content="Scene!" Grid.Row="0"
IsChecked="{Binding SceneIsChecked}"/>
<ToggleButton Content="Storage!" Grid.Row="1"
IsChecked="{Binding UnloadingAreaIsChecked}"/>-->
</Grid>
<!--StatusBar
<OmagOFFICE:StatusBarV DataContext="{StaticResource StatusBarVM}"
DockPanel.Dock="Bottom"/>-->
<!--Magazzino-->
<!--<OmagVIEWPlus:UnloadingAreaV DataContext="{StaticResource UnloadingAreaVM}"/>-->
<!--<OmagVIEWPlus:SceneHostV/>-->
<ContentControl Grid.Column="0" Grid.Row="1" Content="{Binding PageControl}"/>
</DockPanel>
<!--Scena restituita sotto forma di WindowsFormsHost-->
<!--<OmagVIEWPlus:SceneHostV/>-->
</EgtWPFLib5:EgtCustomWindow>