Reputation: 488
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
Reputation: 10015
The SplitView has a property PanePlacement with possible values Left and Right.
<SplitView IsPaneOpen="True" PanePlacement="Right">
</SplitView>
Upvotes: 10