Skip to main content

Touch Scrollbars

Starting from version 14.1, the GridControl introduces Touch Scrollbars. Touch Scrollbars are special touch-friendly scrollbars that do not take up screen space. They are hidden by default, and are displayed on hover, partially overlapping the right or bottom border of the grid’s content area.

To enable this feature, set the DevExpress.Xpf.Core.ScrollBarExtensions.ScrollBarMode property to TouchOverlap for a grid or any upper control in the visual tree . See the example below.


<Grid dx:ScrollBarExtensions.ScrollBarMode="TouchOverlap">
        <dxg:GridControl ItemsSource="{Binding}" />
    </Grid>

grid-touchscrollbars