Is there a way to make vertical scroll bar wider? #178
Answered
by
SKProCH
ctrl-alt-d
asked this question in
Q&A
-
My Material Avalonia app uses vertical scroll bars in some controls: <ScrollViewer>
<StackPanel Orientation="Vertical"
Margin="16, 16">
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" /> The list code: <ListBox DockPanel.Dock="Bottom"
Margin="0"
Items="{Binding MyItems, Mode=OneWay}"
VirtualizationMode="Simple">
<ListBox.ItemTemplate>
<DataTemplate>
<pages:AlumneRowUserCtrl/>
</DataTemplate>
</ListBox.ItemTemplate>
</ListBox> There is some way to make scroll bar control wider? My users say they have problems on windows some time to click on it. Thanks! |
Beta Was this translation helpful? Give feedback.
Answered by
SKProCH
Jul 3, 2022
Replies: 1 comment
-
Hello, @ctrl-alt-d You can set |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
SKProCH
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hello, @ctrl-alt-d
You can set
Classes="Classic"
for your ScrollViewer and your scrollbar will be look like that: