EventToCommandBase.DispatcherPriority Property
In This Article
Gets or sets the priority of the Dispatcher that invokes the associated command. This is a dependency property.
Namespace: DevExpress.Mvvm.UI
Assembly: DevExpress.Xpf.Core.v24.2.dll
NuGet Package: DevExpress.Wpf.Core
#Declaration
public DispatcherPriority? DispatcherPriority { get; set; }
#Property Value
Type | Description |
---|---|
Nullable<Dispatcher |
A Dispatcher |
#Remarks
A Dispatcher allows you to delay command execution. Do not use the Dispatcher to call commands that require immediate execution and use the two-way conversion.
See Also