0

I have been using a variation of the Template 10 approach to using NavigationView. See Alternative way to create shell in Prism.Windows 7.1.0?

With the Prism 7.2 pre-release, the call to NavigationService.Create does not seem to be available.

My goal is to allow navigation using the UWP NavigationView and Prism 7.2. I having been banging my head against this without success but hopefully there is a simple solution I am missing?

[Update] 21 Mar 2019: Prism support for UWP has been abandoned pending reassessment of the path forward. See https://github.com/PrismLibrary/Prism/issues/1745

phandcock
  • 1
  • 2

1 Answers1

0

You are not the only one having an issue with this, see the related question on GitHub.

The Create method was removed, but you can now create NavigationService using the CreateNavigationService method in PrismApplicationBase (see code on GitHub). It has the same arguments so you should be able to use it instead of the Create method you have been using up to this point.

Martin Zikmund
  • 38,440
  • 7
  • 70
  • 91
  • Thanks. I had trouble implementing this in my control as I could not get access to the method. I shall see what comes of the GitHub question. – phandcock Feb 25 '19 at 13:34