Home > Software engineering >  how can i remove scrollbarr arrow wpf
how can i remove scrollbarr arrow wpf

Time:11-12

scrollbar

I want to remove scrollbar arrow and change the color and round the edges how can i do

CodePudding user response:

You can set the RepeatButton Visibility=Collapsed :

<Style TargetType="{x:Type RepeatButton}">
    <Setter Property="Visibility" Value="Collapsed"/>
</Style>

Here is the link I found for it, there is full description of all ScrollBar properties.

  • Related