Jerry Nixon

Results 117 issues of Jerry Nixon

Currently has `ToString()` which requires: ````csharp var path = PathBuilder.Create(BackStackBehaviors.Clear, nameof(MyView)).ToString(); await NavigationService.NavigateAsync(new Uri(path, UriKind.Relative)); ```` This works and should not be changed. The desired ADDITIONAL syntax would be: ````csharp...

enhancement

AttachGestures currently requires Window. This is fine, but it needs an override that does not require it. That's because if you call it outside the earliest pipeline, it's easier to...

enhancement

It's already possible to retrieve the `NavigationService` in a Template 10 view-model using the `GetNavigationService()` extension method off the `NavigationParameters` passed into the `OnNavigatedTo` and `OnNavigatedToAsync` methods. You can also...

enhancement

Right now we do both. If you invoke a background task Application's `EnteringBackground` event is raised and `OnStart` is called. Is that confusing? Is that okay? Not sure. Would like...

help wanted

Right now you have to do this if you want to navigate to `Settings`. ````csharp public override void RegisterTypes(IContainerRegistry container) { container.RegisterView(); } ```` Even if all you are doing...

enhancement

There are several things wrong with it, yet it is close. - [ ] Get it to build, there are some things - [ ] Update it to use Nuget...

help wanted

Though I do believe this is a nice convenience for most developers, it undermines the use of extended splash screens that delay activate until after the splash image loads. That...

bug
enhancement

This could be a `UWP` bug, but the `Template10` version of `LeavingBackground` should not be raised until, at least, the `EnteringBackground` has been raised one time.

bug