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

Touch Scrollbars

DevExpress controls support Touch Scrollbars. Touch Scrollbars are hidden by default and are displayed when hovering the mouse pointer over it, causing the scrollbar to partially overlap the right or bottom border of the grid’s content area.

To show Touch Scrollbars instead of the regular ones, set the ScrollBarExtensions.ScrollBarMode property to TouchOverlap for a DevExpress control or a higher control in the visual tree. See the example below.

<Window xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        xmlns:dx="http://schemas.devexpress.com/winfx/2008/xaml/core"
        xmlns:dxe="http://schemas.devexpress.com/winfx/2008/xaml/editors" x:Class="TouchScrollbars.MainWindow"
        Title="MainWindow" Height="500" Width="800">
    <Grid dx:ScrollBarExtensions.ScrollBarMode="TouchOverlap">
        <dxe:ListBoxEdit ItemsSource="{Binding}" />
    </Grid>
</Window>