Same UWP app [Win 10 build 16215 Local Machine or Win 10 Emulator (x86) 10.0.10586] using NavigateCommand from Login to Home (MasterDetail) as shown in YouTube https://www.youtube.com/watch?v=cBgMPW-Bcx8 => All navigation without problem
Problem only happens if I replace BACK the NavigateCommand back to NavigateAbsoluteCommand Automatically created by AppMap
=> The problem, at the Login Page, click Home ( crashes the app when it is NavigateAbsoluteCommand AND not NavigateCommand )
I just wanted to let you know that this has been fixed in the AppMap.
Got it. Thanks
As I mentioned in my previous post, you can manually change your Command to use the NavigateCommand
Change:
Command="{Binding Path=NavigateAbsoluteCommand}" CommandParameter="/PageName"
To:
Command="{Binding Path=NavigateCommand}" CommandParameter="/PageName"
Another option would be to just change the NavigateAbsoluteCommandExecute method in the AppMapViewModelBase class
await this.NavigationService.NavigateAsync(new Uri(uri, UriKind.Absolute), null, false);
await this.NavigationService.NavigateAsync(uri, null, false);
Dear Brian, do you have time to figure out the "fix" and could you share with me the "fix", so I could continue to develop and promote App Map for UWP? Thnx
Thanks for prompt reply. It is great that there is NOW a plan to include UWP.
In my impression, most of us who are porting XF controls for UWP have been doing customRendering using ideas from https://github.com/telerik/UI-For-UWP
I believe having well integrated XF controls and App Map adapted for UWP will give infragistics some advantages. There are still significant vacum in use case, examples and tools to simplify Xamarin Forms for UWP development. Your organization commitment to bring XF controls and App Map to UWP will be welcome to UWP XF community.