更改 SplitView 的方向

Changing the orientation of a SplitView

我正在制作一个 UWP (Windows 10) 应用程序。我想知道,是否可以改变 SplitView 的方向?通常,它的顺序如下:

______________________________________________
|             |                              |
|             |                              |
|             |                              |
|             |                              |
|             |                              |
|    Pane     |          Content             |
|             |                              |
|             |                              |
|             |                              |
|             |                              |
|             |                              |
----------------------------------------------

是否可以将方向更改为:

______________________________________________
|                                            |
|                                            |
|                     Pane                   |
|                                            |
|                                            |
|                                            |
----------------------------------------------
|                                            |
|                                            |
|                                            |
|                                            |
|                    Content                 |
|                                            |
|                                            |
|                                            |
----------------------------------------------

平台不支持(SplitVew.PanePlacement属性只能左或右)。

您可以通过在应用程序顶部放置一个命令栏来达到类似的效果。