|
@@ -36,26 +36,34 @@
|
|
|
<dynamicgrid:DynamicTabItem x:Name="Holdings" Header="Holdings">
|
|
|
<Grid>
|
|
|
<Grid.RowDefinitions>
|
|
|
- <RowDefinition Height="*"/>
|
|
|
- <RowDefinition Height="Auto"/>
|
|
|
<RowDefinition Height="Auto"/>
|
|
|
<RowDefinition Height="*"/>
|
|
|
+ <RowDefinition Height="Auto"/>
|
|
|
+ <RowDefinition Height="3*"/>
|
|
|
</Grid.RowDefinitions>
|
|
|
- <local:ProductHoldingControl x:Name="ProductHoldings" UseWaitCursor="false"
|
|
|
- Grid.Row="0"/>
|
|
|
- <sf:SfGridSplitter Grid.Row="1" Height="4"
|
|
|
+ <Border BorderBrush="Gray" BorderThickness="0.75" Background="WhiteSmoke" Height="25"
|
|
|
+ Grid.Row="0" Margin="0,2">
|
|
|
+ <Label Content="Product Instances" HorizontalContentAlignment="Center"
|
|
|
+ VerticalContentAlignment="Center" />
|
|
|
+ </Border>
|
|
|
+ <local:ProductInstanceControl x:Name="ProductInstances" UseWaitCursor="False" Grid.Row="1"
|
|
|
+ OnChanged="ProductInstances_OnChanged"/>
|
|
|
+
|
|
|
+ <sf:SfGridSplitter Grid.Row="2" Height="4"
|
|
|
HorizontalAlignment="Stretch"
|
|
|
Background="Transparent"
|
|
|
ResizeBehavior="PreviousAndNext"
|
|
|
Template="{StaticResource HorizontalSplitter}"
|
|
|
PreviewStyle="{StaticResource HorizontalSplitterPreview}"/>
|
|
|
+ <DockPanel Grid.Row="3">
|
|
|
<Border BorderBrush="Gray" BorderThickness="0.75" Background="WhiteSmoke" Height="25"
|
|
|
- Grid.Row="2" Margin="0,2">
|
|
|
- <Label Content="Product Instances" HorizontalContentAlignment="Center"
|
|
|
+ DockPanel.Dock="Top" Margin="0,2">
|
|
|
+ <Label Content="Product Holdings" HorizontalContentAlignment="Center"
|
|
|
VerticalContentAlignment="Center" />
|
|
|
</Border>
|
|
|
- <local:ProductInstanceControl x:Name="ProductInstances" UseWaitCursor="False" Grid.Row="3"
|
|
|
- OnChanged="ProductInstances_OnChanged"/>
|
|
|
+ <local:ProductHoldingControl x:Name="ProductHoldings" UseWaitCursor="false"
|
|
|
+ DockPanel.Dock="Top"/>
|
|
|
+ </DockPanel>
|
|
|
</Grid>
|
|
|
</dynamicgrid:DynamicTabItem>
|
|
|
|