|
@@ -12,6 +12,8 @@
|
|
|
<ColumnDefinition Width="450" />
|
|
|
<ColumnDefinition Width="Auto" />
|
|
|
<ColumnDefinition Width="*" />
|
|
|
+ <ColumnDefinition Width="Auto" />
|
|
|
+ <ColumnDefinition Width="*" />
|
|
|
<ColumnDefinition Width="450" />
|
|
|
</Grid.ColumnDefinitions>
|
|
|
<Grid.RowDefinitions>
|
|
@@ -26,20 +28,43 @@
|
|
|
<syncfusion:SfGridSplitter Grid.Row="0" Grid.Column="1" Grid.RowSpan="2" Name="Splitter"
|
|
|
VerticalAlignment="Stretch" ResizeBehavior="PreviousAndNext" Width="Auto"
|
|
|
Background="WhiteSmoke" />
|
|
|
-
|
|
|
+
|
|
|
<Border Grid.Row="0" Grid.Column="2" Margin="0,0,0,2" BorderBrush="Gray" BorderThickness="0.75"
|
|
|
CornerRadius="5,5,0,0" Background="WhiteSmoke">
|
|
|
- <Label Content="Selected Requisition Items" VerticalContentAlignment="Center"
|
|
|
+ <Label Content="Requested Items" VerticalContentAlignment="Center"
|
|
|
HorizontalContentAlignment="Center" />
|
|
|
</Border>
|
|
|
- <local:RequisitionItemGrid x:Name="Items" Grid.Row="1" Grid.Column="2" />
|
|
|
+ <local:RequisitionItemGrid x:Name="UnPickedItems" Grid.Row="1" Grid.Column="2" />
|
|
|
+
|
|
|
+ <Grid Grid.Row="1" Grid.Column="3" HorizontalAlignment="Center" VerticalAlignment="Center">
|
|
|
+ <Grid.RowDefinitions>
|
|
|
+ <RowDefinition Height="auto"/>
|
|
|
+ <RowDefinition Height="auto"/>
|
|
|
+ <RowDefinition Height="500"/>
|
|
|
+ </Grid.RowDefinitions>
|
|
|
+ <Button Grid.Row="0" Margin="2,2,2,5" Click="PickItems_Click">
|
|
|
+ <Image Source="pack://application:,,,/Resources/rightarrow.png"/>
|
|
|
+ </Button>
|
|
|
+ <Button Grid.Row="1" Margin="2,5,2,2" Click="UnPickItems_Click">
|
|
|
+ <Image Source="pack://application:,,,/Resources/leftarrow.png"/>
|
|
|
+ </Button>
|
|
|
+
|
|
|
+ </Grid>
|
|
|
+
|
|
|
+ <Border Grid.Row="0" Grid.Column="4" Margin="0,0,0,2" BorderBrush="Gray" BorderThickness="0.75"
|
|
|
+ CornerRadius="5,5,0,0" Background="WhiteSmoke">
|
|
|
+ <Label Content="Picked Items" VerticalContentAlignment="Center"
|
|
|
+ HorizontalContentAlignment="Center"/>
|
|
|
+ </Border>
|
|
|
+ <local:RequisitionItemGrid x:Name="Items" Grid.Row="1" Grid.Column="4" />
|
|
|
+
|
|
|
|
|
|
- <Border Grid.Row="0" Grid.Column="3" Margin="4,0,0,2" BorderBrush="Gray" BorderThickness="0.75"
|
|
|
+ <Border Grid.Row="0" Grid.Column="5" Margin="4,0,0,2" BorderBrush="Gray" BorderThickness="0.75"
|
|
|
CornerRadius="5,5,0,0" Background="WhiteSmoke">
|
|
|
<Label Content="Requisition Details" VerticalContentAlignment="Center" HorizontalContentAlignment="Center" />
|
|
|
</Border>
|
|
|
|
|
|
- <Border BorderBrush="DarkGray" BorderThickness="1" Grid.Column="3" Grid.Row="1" Margin="4,0,0,2"
|
|
|
+ <Border BorderBrush="DarkGray" BorderThickness="1" Grid.Column="5" Grid.Row="1" Margin="4,0,0,2"
|
|
|
Padding="0,0,0,5">
|
|
|
<Grid>
|
|
|
<Grid.RowDefinitions>
|