SplitView窗格从右侧打开,如W10 Mail App

Zar*_*ghe 4 c# xaml uwp

如何创建从应用程序右侧打开的SplitView面板.当您按下设置图标时,这将在Windows 10 Mail Applications中实现.我已经用Google搜索了,但没有什么可以帮助的.谢谢.

Bar*_*art 9

SplitView有一个属性PanePlacement,可能的值为Left和Right.

<SplitView IsPaneOpen="True" PanePlacement="Right">
</SplitView>
Run Code Online (Sandbox Code Playgroud)