James Ko
James Ko

Reputation: 34499

Changing the orientation of a SplitView

I'm making a UWP (Windows 10) app. I'd like to know, is it possible to change the orientation of a SplitView? Typically, it's ordered like this:

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

Is it possible to change the orientation to:

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

Upvotes: 1

Views: 1094

Answers (1)

Daniel Jacobson
Daniel Jacobson

Reputation: 186

It is not supported by the platform (SplitVew.PanePlacement property can only be left or right).

You can likely achieve a somewhat similar affect by placing a command bar at the top of your application.

Upvotes: 1

Related Questions