Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

AlertControl.Show(Form) Method

Displays an empty alert form.

Namespace: DevExpress.XtraBars.Alerter

Assembly: DevExpress.XtraBars.v24.2.dll

NuGet Package: DevExpress.Win.Navigation

#Declaration

public void Show(
    Form owner
)

#Parameters

Name Type Description
owner Form

An owner of the window. In a multi-monitor system, if the owner is set to null, the window will be displayed on the main monitor. Otherwise, the window will be displayed on the same monitor as the owner.

#Remarks

If the AlertControl.AllowHtmlText property is enabled, you can use HTML tags to format an alert window’s caption and text. See HTML Text Formatting to learn more.

You can handle the AlertControl.BeforeFormShow event to customize the newly created alert window before its appearance on-screen.

See Also