文档彩票走势图>>Devexpress WPF控件文档中心>>触摸滚动条
触摸滚动条
DevExpress控件支持触摸滚动条。默认情况下,触摸滚动条是隐藏的,当将鼠标指针悬停在其上时显示,从而导致滚动条部分重叠网格内容区域的右边框或下边框。
要显示触摸滚动条而不是常规滚动条,请将DevExpress控件或可视化树中更高级别控件的ScrollBarExtensions.ScrollBarMode属性设置为TouchOverlap,请看下面的例子。
<Window xmlns="//schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="//schemas.microsoft.com/winfx/2006/xaml" xmlns:dx="//schemas.devexpress.com/winfx/2008/xaml/core" xmlns:dxe="//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>