Skip to main content
A newer version of this page is available. .

WaitForm.ShowOnTopMode Property

Gets or sets above which windows the current WaitForm is displayed.

Namespace: DevExpress.XtraWaitForm

Assembly: DevExpress.XtraEditors.v19.1.dll

Declaration

[DefaultValue(ShowFormOnTopMode.Default)]
public ShowFormOnTopMode ShowOnTopMode { get; set; }

Property Value

Type Default Description
ShowFormOnTopMode **Default**

A ShowFormOnTopMode enumerator value that specifies above which windows the current WaitForm is displayed.

Available values:

Name Description
Default

Specifies a form’s default position relative to other forms. Currently, Default is equivalent to AboveParent.

AboveParent

A form is displayed above its parent.

AboveAll

A form is displayed topmost.

ObsoleteAboveParent

This option applies the old algorithm that keeps a form above its parent.

Remarks

Using the ShowOnTopMode property you can set whether the current wait form will be displayed topmost or above the parent form only.

See Also