本文介绍了在WPF中如何更改DataGrid.ScrollBar的宽度?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

在WPF中,如何更改<code> DataGrid.ScrollBar的宽度?

In WPF how to change the width of <code>DataGrid.ScrollBar?

推荐答案

<ScrollBar x:Name="PART_VerticalScrollBar" Width="100" Grid.Column="2" Maximum="{TemplateBinding ScrollableHeight}" Orientation="Vertical" Grid.Row="1" Visibility="{TemplateBinding ComputedVerticalScrollBarVisibility}" Value="{Binding VerticalOffset, Mode=OneWay, RelativeSource={RelativeSource TemplatedParent}}" ViewportSize="{TemplateBinding ViewportHeight}"/>


这篇关于在WPF中如何更改DataGrid.ScrollBar的宽度?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-27 00:40