windowsforms-devexpress-dot-xtrabars-dot-baritem-ed332c88.md
Gets or sets when the Click events for the bar item fire, immediately or asynchronously, after all events in the system event queue are processed.
Namespace : DevExpress.XtraBars
Assembly : DevExpress.XtraBars.v25.2.dll
NuGet Package : DevExpress.Win.Navigation
[DefaultValue(BarItemEventFireMode.Default)]
[DXCategory("Behavior")]
public BarItemEventFireMode ItemClickFireMode { get; set; }
<DefaultValue(BarItemEventFireMode.Default)>
<DXCategory("Behavior")>
Public Property ItemClickFireMode As BarItemEventFireMode
| Type | Default | Description |
|---|---|---|
| BarItemEventFireMode | Default |
A BarItemEventFireMode value that specifies the Click event firing mode.
|
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.
|
The ItemClickFireMode property controls when the Click events for the current bar item fire, immediately or postponed, after processing the current event queue.
See Also