AppBarUtils 2.1.0
See the version list below for details.
dotnet add package AppBarUtils --version 2.1.0
NuGet\Install-Package AppBarUtils -Version 2.1.0
<PackageReference Include="AppBarUtils" Version="2.1.0" />
paket add AppBarUtils --version 2.1.0
#r "nuget: AppBarUtils, 2.1.0"
// Install AppBarUtils as a Cake Addin #addin nuget:?package=AppBarUtils&version=2.1.0 // Install AppBarUtils as a Cake Tool #tool nuget:?package=AppBarUtils&version=2.1.0
AppBarUtils provides out-of-box application bar behaviors/triggers/actions for Windows Phone SDK 7.1 or higher.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET Framework | net is compatible. |
This package has no dependencies.
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
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.