Paul Stanley
Paul Stanley

Reputation: 2171

UWP NavigationView Pane Display Top

I can not find any way of displaying the NavigationView at the top of the screen. The PaneDisplayMode property described in documentation does not work.

Upvotes: 0

Views: 553

Answers (1)

Martin Zikmund
Martin Zikmund

Reputation: 39102

To make this work you need to target and run Windows 10 version 1809 and later as described in the docs:

Additional features and requirements

Device family Windows 10, version 1809 (introduced v10.0.17763.0)

API contract Windows.Foundation.UniversalApiContract (introduced v7)

Alternatively you will be able to use the Win UI library which provides backward compatiblity of new control features into older versions of Windows 10.

Upvotes: 3

Related Questions