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

ScrollUIMode Enum

Enumerates modes that specify the appearance and behavior of scroll bars.

Namespace: DevExpress.XtraEditors

Assembly: DevExpress.Utils.v20.2.dll

NuGet Packages: DevExpress.Utils, DevExpress.Wpf.Core

Declaration

public enum ScrollUIMode

Members

Name Description
Default

The mode is not specified explicitly. Enables Desktop mode.

Desktop

Scroll bars optimized for desktop applications. Auto-hide and auto-expand functionality are not supported.

Touch

Scroll bars optimized for touch applications. They are shown when a user flicks the scrollable content (or the mouse pointer moves over the control), and hidden when the control is not scrolled (or the mouse pointer does not move) for some time. The arrow buttons are never displayed.

Fluent

Scroll bars optimized for Fluent Design Forms. They are expanded when a user flicks the scrollable content (or the mouse cursor moves over the control), and collapses to a thin stripe if the control is not scrolled (or the mouse cursor does not move) for some time. The arrow buttons are never displayed.

Related API Members

The following properties accept/return ScrollUIMode values:

Remarks

Use the static (Shared in VB.NET) WindowsFormsSettings.ScrollUIMode property to specify the scroll bar mode in the application.

See Also