Zara Gheorghe
Zara Gheorghe

Reputation: 488

SplitView Pane open from right like W10 Mail App

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.

Upvotes: 5

Views: 2460

Answers (1)

Bart
Bart

Reputation: 10015

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

<SplitView IsPaneOpen="True" PanePlacement="Right">
</SplitView>

Upvotes: 10

Related Questions