Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

SplitView Pane open from right like W10 Mail App

Tags:

c#

xaml

uwp

How do I create a SplitView Panel which opens from right side of the app. This is implemented in Windows 10 Mail Applications when you press on the settings icon. I've googled for this but there is nothing that can help. Thanks.

like image 215
Zara Gheorghe Avatar asked Sep 24 '15 12:09

Zara Gheorghe


People also ask

When using a SplitView control which display mode should you use to ensure that the pane pushes the contents when the pane is open?

By default, the Pane overlays the Content and disappears completely when closed. You can use one of the "inline" modes to show the Pane side-by-side with the Content. You can use the "compact" modes to make a narrow section of the Pane remain visible even when the Pane is closed.

What is split view in VB?

The split view control can be used to create any "drawer" experience where users can open and close the supplemental pane. For example, you can use SplitView to build the list/details pattern.


1 Answers

The SplitView has a property PanePlacement with possible values Left and Right.

<SplitView IsPaneOpen="True" PanePlacement="Right">
</SplitView>
like image 187
Bart Avatar answered Oct 13 '22 21:10

Bart