BaseGallery.ItemClickFireMode Property
Gets or sets whether clicks on gallery items are handled synchronously or asynchronously.
Namespace: DevExpress.XtraBars.Ribbon.Gallery
Assembly: DevExpress.XtraBars.v22.1.dll
NuGet Package: DevExpress.Win.Navigation
Declaration
[DefaultValue(BarItemEventFireMode.Default)]
[DXCategory("Behavior")]
public BarItemEventFireMode ItemClickFireMode { get; set; }
Property Value
Type | Default | Description |
---|---|---|
BarItemEventFireMode | Default | A BarItemEventFireMode enumeration value that specifies whether clicks are handled synchronously or asynchronously. |
Available values:
Name | Description |
---|---|
Default | This option is equivalent to the BarItemEventFireMode.Immediate option. |
Immediate | The Click events for a specific bar item fire immediately. |
Postponed | The Click events for a specific bar item are postponed. They fire after all events in the event queue have been processed. |
See Also