Files
OmagVIEWPlus/GridBox/GridBoxesV.xaml
T
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

43 lines
1.7 KiB
XML

<UserControl x:Class="GridBoxesV"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:OmagVIEWPlus="clr-namespace:OmagVIEWPlus"
mc:Ignorable="d"
d:DesignHeight="450" d:DesignWidth="800">
<UserControl.Resources>
<ResourceDictionary Source = "/OmagVIEWPlus;component/Utility/Dictionary.xaml"/>
</UserControl.Resources>
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="35"/>
<RowDefinition Height="1*"/>
</Grid.RowDefinitions>
<UniformGrid Grid.Row="0" Columns="2" Margin="10,0,10,0">
<ToggleButton Name="Pallet"
Content="Pallet"
IsChecked="{Binding IsPallet}"/>
<ToggleButton Name="Rack"
Content="Rack"
IsChecked="{Binding IsRack}"/>
</UniformGrid>
<ItemsControl ItemsSource="{Binding CurrBoxList}"
Grid.Row="1">
<ItemsControl.ItemsPanel>
<ItemsPanelTemplate>
<UniformGrid Columns="1" Rows="{Binding nRows}"/>
</ItemsPanelTemplate>
</ItemsControl.ItemsPanel>
<ItemsControl.ItemTemplate>
<DataTemplate>
<OmagVIEWPlus:BoxV/>
</DataTemplate>
</ItemsControl.ItemTemplate>
</ItemsControl>
</Grid>
</UserControl>