Table of Contents
View2 Property

Gets or sets the contents of the second panel.

Syntax
 public UIElement View2 { get; set; }
Remarks

The following code demonstrates how to set the contents of the second panel:

XAML
<eo:SplitView>
    ....
    <!-- Specify the contents of the second panel -->
    <eo:SplitView.View2>
        <TextBlock HorizontalAlignment="Center" VerticalAlignment="Center">
            Some text 
        </TextBlock>
    </eo:SplitView.View2>
</eo:SplitView>

See Also