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.