Table of Contents
View1 Property

Gets or sets the contents of the first panel.

Syntax
 public UIElement View1 { get; set; }
Remarks

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

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

See Also