Skip to main content

Commands

Commands allow you to define actions in a View Model and then bind to them from any place in a View.

DevExpress MVVM Framework includes the following commands:

Delegate Commands

Delegate commands implement the ICommand interface and allow you to create commands in a ViewModel.

Run Demo: DelegateCommand Module in the WinUI MVVM Demo

Asynchronous Commands

Use asynchronous commands to run a time-consuming operation in a separate thread and keep the UI responsive.

Run Demo: AsyncCommand Module in the WinUI MVVM Demo