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
Name | The element name |
IsBuddyExpanded | Returns the expanded status of the ElementName="...", e.g. in the above example, "RightPanel" (see <l:ToolBarTrayExpander). |
Visibility | Visibility |
Grid.Row | In which row of the <Grid.RowDefinitions it should appear. |
Grid.Column | In which column of the <Grid.ColumnDefinitions it should appear |
ResizeDirection | How it resizes. Could be "Columns". |
ResizeBehavior | How it resizes. Could be "PreviousAndCurrent", "CurrentAndNext". |
HorizontalAlignment | Alignment |
l:ShellMode.Allowed | Shell 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"
/>