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

AppBar.IsSticky Property

OBSOLETE

Use HideMode property instead

Gets or sets whether the AppBar remains visible when an end-user interacts with the application. This property is obsolete. Use the AppBar.HideMode property instead.

Namespace: DevExpress.Xpf.WindowsUI

Assembly: DevExpress.Xpf.Controls.v19.2.dll

Declaration

[Obsolete("Use AppBar.HideMode property instead")]
public bool IsSticky { get; set; }

Property Value

Type Description
Boolean

true, if the AppBar remains visible when an end-user interacts with the application; otherwise, false.

Remarks

The app bar can be visible or hidden in the application window. An end-user can open and close the app bar by right clicking the mouse on the application area. The app bar disappears from view when an end-user resumes interaction with the application anywhere outside the app bar. This behavior is called light dismiss. This default behavior can be changed using the IsSticky property. If it is set to true, the app bar is stuck to the window and disappears only when an end-user explicitly closes it with a right click or with the Escape key.

See Also