ShellGridSplitter class

Build 1501 on 14/Nov/2017  This topic last edited on: 22/Mar/2016, at 16:37

Description

It appears within a navigator definition in navigators that have the expandable draft view, such as Articles navigator. It allows you to move left and right the left edge of the draft view. It works in conjunction with the <l:ToolBarTrayExpander section after it.

Namespace

xmlns:l="http://www.teradp.com/schemas/GN4/1/Shell/Presentation"

Members

NameThe element name
IsBuddyExpandedReturns the expanded status of the ElementName="...", e.g. in the above example, "RightPanel" (see <l:ToolBarTrayExpander).
VisibilityVisibility
Grid.RowIn which row of the <Grid.RowDefinitions it should appear.
Grid.ColumnIn which column of the <Grid.ColumnDefinitions it should appear
ResizeDirectionHow it resizes. Could be "Columns".
ResizeBehaviorHow it resizes. Could be "PreviousAndCurrent", "CurrentAndNext".
HorizontalAlignmentAlignment
l:ShellMode.AllowedShell mode

Example

<l:ShellGridSplitter 

  Name="RightSplitter"

  IsBuddyExpanded="{Binding ElementName=RightPanel, Path=IsExpanded}"

  Visibility="{Binding ElementName=RightPanel, Path=Visibility}"

  Grid.Row="0" 

  Grid.RowSpan="5" 

  Grid.Column="1"

  ResizeDirection="Columns" 

  ResizeBehavior="PreviousAndCurrent" 

  HorizontalAlignment="Left" 

  l:ShellMode.Allowed="Browse"

/>