VOOZH about

URL: https://www.nuget.org/packages/Chinook.BackButtonManager/

⇱ NuGet Gallery | Chinook.BackButtonManager 4.0.0




Chinook.BackButtonManager 4.0.0

dotnet add package Chinook.BackButtonManager --version 4.0.0
 
 
NuGet\Install-Package Chinook.BackButtonManager -Version 4.0.0
 
 
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Chinook.BackButtonManager" Version="4.0.0" />
 
 
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Chinook.BackButtonManager" Version="4.0.0" />
 
Directory.Packages.props
<PackageReference Include="Chinook.BackButtonManager" />
 
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Chinook.BackButtonManager --version 4.0.0
 
 
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Chinook.BackButtonManager, 4.0.0"
 
 
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package Chinook.BackButtonManager@4.0.0
 
 
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Chinook.BackButtonManager&version=4.0.0
 
Install as a Cake Addin
#tool nuget:?package=Chinook.BackButtonManager&version=4.0.0
 
Install as a Cake Tool
The NuGet Team does not provide support for this client. Please contact its maintainers for support.

Chinook.BackButtonManager

👁 Version
👁 Downloads

The Chinook.BackButtonManager packages provide recipes to ease the handling of back buttons in .Net applications. It was designed for MVVM applications, but should work with other patterns too.

Cornerstones

  • Highly Extensible
    • Everything is interface-based to easily allow more implementations.
    • A single framework can't cover everything. Our architecture is designed in a way that allows you to extend this foundation to support more use-cases.
  • Simple
    • The recipes from these packages are ultra-simple but are still complete enough to support edge cases.

More like this

The Chinook namespace has other recipes for .Net MVVM applications.

Getting Started

Uno projects

BackButtonManager is especially well-integrated with Uno. Here is how to use it in a project which includes the Uno platform:

  1. Add a package reference to Chinook.BackButtonManager.Uno.WinUI (for WinUI or MAUI apps).

  2. Create a single instance of a BackButtonManager which you will use throughout your project.

    var manager = new BackButtonManager();
    
  3. In your app's Startup, add the source that the manager uses to detect back button presses:

    // This must be executed on the dispatcher
    var source = new SystemNavigationBackButtonSource();
    manager.AddSource(source);
    

    ❗ Note that SystemNavigationManager no longer works on Windows applications that are not UWP. On WinUI, you can no longer have a global back button in the title bar of the application.

  4. Add handlers for each action you want to take when the back button is pressed:

    manager.AddHandler(new BackButtonHandler(
     name: "TODO handler name",
     canHandle: () => CanYourMethodBeCalled(),
     handle: async ct => await YourMethod(ct)
    ));
    

Other projects

If your project does not use Uno, you can certainly use BackButtonManager! Here's how:

  1. Add a package reference to Chinook.BackButtonManager.

  2. Create a single instance of a BackButtonManager which you will use throughout your project.

    var manager = new BackButtonManager();
    
  3. You will need to create a source which implements the IBackButtonSource interface. In your app's Startup, add this source so that BackButtonManager can use it to detect back button presses.

    var source = new MyBackButtonSource();
    manager.AddSource(source);
    
  4. Add handlers for each action you want to take when the back button is pressed:

    manager.AddHandler(new BackButtonHandler(
     name: "TODO handler name",
     canHandle: () => CanYourMethodBeCalled(),
     handle: async ct => await YourMethod(ct)
    ));
    

Features

Create back button sources

Using IBackButtonSource, you can implement a back button source. You can see that as an abstraction of a button. You could create sources for things like the following.

  • The hardware back button on Android.
  • The escape key from your keyboard.
  • The back button from your mouse.

Once you have a back button source, simply add it to a IBackButtonManager using AddSource.

Create a back button source for XButton1

This is a source for the XButton1, which is the back button on a mouse. This is useful for desktop applications.

Microsoft.UI.Xaml.Window window;
// (Make sure you initialize the window and its content.)
var source = new XButton1BackButtonSource(window.Content);
Create a custom back button source

The interface IBackButtonSource is very simple. You can implement your own sources easily.

Create back button handlers

Using IBackButtonHandler, you can create the objects that react to back requests. Handlers can be added to (or removed from) a IBackButtonManager at any point.

Create global handlers

That's one of the main use-case of this recipe. You likely want to create a default action to perform when a back is requested.

Here is some code showing how to setup a IBackButtonManager with a default handler in a context using Microsoft.Extensions.DependencyInjection and Chinook.Navigation.

public static IServiceCollection AddDefaultBackHandler(this IServiceCollection services)
{
 return services
 .AddSingleton<IBackButtonManager>(s =>
 {
 var manager = new BackButtonManager();

 var sectionsNavigator = s.GetRequiredService<ISectionsNavigator>();
 manager.AddHandler(new BackButtonHandler(
 name: "DefaultSectionsNavigatorHandler",
 canHandle: () => sectionsNavigator.CanNavigateBackOrCloseModal(),
 handle: async ct => await sectionsNavigator.NavigateBackOrCloseModal(ct)));

 return manager;
 });
}
Create temporary handlers

This can be useful when your page has advances states or secondary views. Imagine having a drawer or side menu. When that secondary view is active, it is likely that you want your back button to dismiss that secondary view rather than navigating to the previous page.

public MainPageViewModel(IBackButtonManager manager)
{
	var customHandler = new BackButtonHandler("CustomBackHandler",
		// The handler will only be invoked when the side panel is open.
		canHandle: () => IsSidePanelOpen,
		
		// Close the side panel when a back is requested.
		handle: async ct => IsSidePanelOpen = false
	);
	var subscription = manager.RegisterHandler(customHandler);

	// Automatically remove the handler when this page gets disposed.
	this.AddDisposable(subscription);
}

public bool IsSidePanelOpen
{
	get => this.Get<bool>(initialValue: false);
	set => this.Set(value);
}

💡 This sample shows a ViewModel written using Chinook.DynamicMvvm.

Specify an handler's priority

It is possible to specify a priority when calling IBackButtonManager.AddHandler. The highest priority handlers will be evaluated first.

Legacy

Create a source from SystemNavigationManager

This can be useful for UWP or Uno.UI applications. The source is based on the SystemNavigationManager.BackRequested event.

// This must be executed on the dispatcher
var source = new SystemNavigationBackButtonSource();

Breaking Changes

Please consult for more information about migration.

License

This project is licensed under the Apache 2.0 license - see the file for details.

Contributing

Please read for details on the process for contributing to this project.

Be mindful of our .

Product Versions Compatible and additional computed target framework versions.
.NET net5.0 net5.0 was computed.  net5.0-windows net5.0-windows was computed.  net6.0 net6.0 was computed.  net6.0-android net6.0-android was computed.  net6.0-ios net6.0-ios was computed.  net6.0-maccatalyst net6.0-maccatalyst was computed.  net6.0-macos net6.0-macos was computed.  net6.0-tvos net6.0-tvos was computed.  net6.0-windows net6.0-windows was computed.  net7.0 net7.0 was computed.  net7.0-android net7.0-android was computed.  net7.0-ios net7.0-ios was computed.  net7.0-maccatalyst net7.0-maccatalyst was computed.  net7.0-macos net7.0-macos was computed.  net7.0-tvos net7.0-tvos was computed.  net7.0-windows net7.0-windows was computed.  net8.0 net8.0 was computed.  net8.0-android net8.0-android was computed.  net8.0-browser net8.0-browser was computed.  net8.0-ios net8.0-ios was computed.  net8.0-maccatalyst net8.0-maccatalyst was computed.  net8.0-macos net8.0-macos was computed.  net8.0-tvos net8.0-tvos was computed.  net8.0-windows net8.0-windows was computed.  net9.0 net9.0 was computed.  net9.0-android net9.0-android was computed.  net9.0-browser net9.0-browser was computed.  net9.0-ios net9.0-ios was computed.  net9.0-maccatalyst net9.0-maccatalyst was computed.  net9.0-macos net9.0-macos was computed.  net9.0-tvos net9.0-tvos was computed.  net9.0-windows net9.0-windows was computed.  net10.0 net10.0 was computed.  net10.0-android net10.0-android was computed.  net10.0-browser net10.0-browser was computed.  net10.0-ios net10.0-ios was computed.  net10.0-maccatalyst net10.0-maccatalyst was computed.  net10.0-macos net10.0-macos was computed.  net10.0-tvos net10.0-tvos was computed.  net10.0-windows net10.0-windows was computed. 
.NET Core netcoreapp2.0 netcoreapp2.0 was computed.  netcoreapp2.1 netcoreapp2.1 was computed.  netcoreapp2.2 netcoreapp2.2 was computed.  netcoreapp3.0 netcoreapp3.0 was computed.  netcoreapp3.1 netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 netstandard2.0 is compatible.  netstandard2.1 netstandard2.1 was computed. 
.NET Framework net461 net461 was computed.  net462 net462 was computed.  net463 net463 was computed.  net47 net47 was computed.  net471 net471 was computed.  net472 net472 was computed.  net48 net48 was computed.  net481 net481 was computed. 
MonoAndroid monoandroid monoandroid was computed. 
MonoMac monomac monomac was computed. 
MonoTouch monotouch monotouch was computed. 
Tizen tizen40 tizen40 was computed.  tizen60 tizen60 was computed. 
Xamarin.iOS xamarinios xamarinios was computed. 
Xamarin.Mac xamarinmac xamarinmac was computed. 
Xamarin.TVOS xamarintvos xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on Chinook.BackButtonManager:

Package Downloads
Sample.Presentation

Package Description

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
4.0.0 558 1/20/2026
3.0.1 12,493 5/20/2025
3.0.0 270 4/2/2025
2.1.0 24,991 2/8/2024
2.0.0 13,307 12/22/2023
2.0.0-feature.Uno5Update.8 254 12/6/2023
2.0.0-feature.Uno5Update.4 2,358 11/28/2023
1.1.5-feature.Uno5Update.2 203 11/2/2023
1.1.4 24,673 10/17/2023
1.1.3 33,611 11/1/2022
1.1.2 31,684 10/12/2022
1.1.1 2,529 9/21/2022
1.1.0 652 9/16/2022
1.0.0 1,393 8/24/2022
0.5.3 633 8/24/2022
0.5.2 634 8/23/2022
0.5.1 599 8/23/2022
0.5.0-dev.33 55,949 5/18/2022
0.5.0-dev.31 398 5/3/2022
0.5.0-dev.29 6,070 3/31/2022
Loading failed