windowsforms-devexpress-dot-xtrabars-dot-alerter-dot-alertcontrol-f34c74f4.md
Gets or sets the maximum number of simultaneously displayed alert windows.
Namespace : DevExpress.XtraBars.Alerter
Assembly : DevExpress.XtraBars.v25.2.dll
NuGet Package : DevExpress.Win.Navigation
[DefaultValue(0)]
[DXCategory("Behavior")]
public virtual int FormMaxCount { get; set; }
<DXCategory("Behavior")>
<DefaultValue(0)>
Public Overridable Property FormMaxCount As Integer
| Type | Default | Description |
|---|---|---|
| Int32 | 0 |
An integer value that specifies the maximum number of simultaneously displayed alert windows. 0 if this number is not limited.
|
An AlertControl displays alert windows using a FIFO queue. Specify the FormMaxCount property to limit the number of simultaneously displayed alert windows. Additional windows are deferred (when an alert window is hidden, the next window in the queue is displayed).
To access the deferred alert windows, use AlertControl.PostponedFormList.
To access the deferred HTML popup alerts, use AlertControl.PostponedHtmlPopupList.
See Also