Files
Nicola Pievani d950fc1060 OmagVIEWPlus 2.2j1:
-> nuova definizione dei pezzi (classe Part)
-> nuova gestione dei magazzini
-> aggiunta pagina per la selezione dei pezzi manuali
-> nuova configurazione delle variabili.
2020-10-09 08:13:48 +00:00

24 lines
953 B
XML

<Window x:Class="SceneWindowV"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:local="clr-namespace:OmagVIEWPlus"
xmlns:OmagVIEWPlus="clr-namespace:OmagVIEWPlus"
mc:Ignorable="d"
Title="SceneWindowV" Height="450" Width="800">
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="35"/>
<RowDefinition Height="1*"/>
</Grid.RowDefinitions>
<DockPanel HorizontalAlignment="Right" Grid.Row="0">
<ToggleButton Content="Storage!"
IsChecked="{Binding UnloadingAreaIsChecked}"/>
</DockPanel>
<local:SceneHostV Grid.Row="1"/>
</Grid>
</Window>