filmov
tv
Build WPF AsyncCommand using C# async await, Task, and MVVM

Показать описание
WPF tutorial for building an AsyncCommand class using ICommand interface that provides support for asynchronous commands using the C# async await pattern and Task from the Task Parallel Library when using MVVM in C#.
Project on Azure DevOps/Git:
This class and its interface, IAsyncCommand, will provide the foundation for asynchronous commands in your view model with a clean API and choice to choose from a non-generic version without parameters or generic version with a strongly typed parameter. They allow for proper thread affinity and synchronization as well as proper flow of logic in your view models. You can also data-bind to this command from Xaml and it will work as any other ICommand would, but will stll provide the asynchronous model.
These commands can be executed and awaited directly from your view model or from the view through the command binding system. This implementation hooks into the CommandManager.RequerySuggested system to allow notification of CanExecuteChanged when keyboard and mouse input change, as well as control focus events.
#wpf #mvvm #dotnet
Project on Azure DevOps/Git:
This class and its interface, IAsyncCommand, will provide the foundation for asynchronous commands in your view model with a clean API and choice to choose from a non-generic version without parameters or generic version with a strongly typed parameter. They allow for proper thread affinity and synchronization as well as proper flow of logic in your view models. You can also data-bind to this command from Xaml and it will work as any other ICommand would, but will stll provide the asynchronous model.
These commands can be executed and awaited directly from your view model or from the view through the command binding system. This implementation hooks into the CommandManager.RequerySuggested system to allow notification of CanExecuteChanged when keyboard and mouse input change, as well as control focus events.
#wpf #mvvm #dotnet
Комментарии