-
Notifications
You must be signed in to change notification settings - Fork 3
Home
Kyrylo M edited this page Nov 12, 2016
·
10 revisions
The updating of the current documentation to version 1.4.0 is in progress.
An asynchronous implementations of delegate command and other base common classes for WPF.
Its not a framework for creating asynchronous applications. This library was created to be small, without any dependencies, and provide only essentials features for quick development of asynchronous UI in WPF.
Th package is available through the NuGet by running the command
PM> Install-Package WpfAsyncPack
The following classes are available:
-
AsyncCommand
- asynchronous delegate command with convenient bindable properties. -
ProgressiveAsyncCommand
- an extended version ofAsyncCommand
that provides a possibility to report progress. -
AsyncBindableBase
- a base class that provides everything usually needed in objects that are bound to the UI. -
BoolToVisibilityConverter
- a flexible converter frombool
toVisibility
that is needed to bind commands.
A quick demo what is possible to do: