AppBarUtils 2.1.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package AppBarUtils --version 2.1.0
                    
NuGet\Install-Package AppBarUtils -Version 2.1.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="AppBarUtils" Version="2.1.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="AppBarUtils" Version="2.1.0" />
                    
Directory.Packages.props
<PackageReference Include="AppBarUtils" />
                    
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 AppBarUtils --version 2.1.0
                    
#r "nuget: AppBarUtils, 2.1.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 AppBarUtils@2.1.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=AppBarUtils&version=2.1.0
                    
Install as a Cake Addin
#tool nuget:?package=AppBarUtils&version=2.1.0
                    
Install as a Cake Tool

AppBarUtils provides out-of-box application bar behaviors/triggers/actions for Windows Phone SDK 7.1 or higher.

Product Compatible and additional computed target framework versions.
.NET Framework net is compatible. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
2.5.1 685 12/4/2014
2.5.0 515 9/23/2014
2.4.0 2,794 6/9/2013
2.3.0 80 5/26/2013
2.2.0 254 11/16/2012
2.1.0 73 9/25/2012
2.0.1 71 9/16/2012
2.0.0 77 9/15/2012
1.4.0 110 5/6/2012
1.3.0 77 4/21/2012
1.2.0 78 3/18/2012
1.1.0 81 12/22/2011

This release includes a StateChangedTrigger for defining multiple app bars within a page where different state shows different app bar. An examples is the built-in email page where there're two different app bars for both reading and selecting items.

The State property of StateChangedTrigger can be bound to int, bool, enum, or string property of a view model class. false and true will be interpreted as 0 and 1 respectively. int and enum will be used as int (conversion will be performed for enum). String will be parsed as int. The result will be used for SwitchAppBarAction to find the corresponding app bar.

For navigation actions, please try the WPUtils instead which also contains many other useful behaviors, such as ChoosePhotoBehavior and PinToStartAction, and so on.