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

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.v24.2.dll

NuGet Package: DevExpress.Wpf.Controls

#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