Ok, here is my scroll style.
<Style x:Key="{x:Type ScrollBar}" TargetType="{x:Type ScrollBar}">
<Setter Property="Background" Value="#D5E0FF" />
</Style>
If I applied this, all scrollbars in my application will undoubtedly be affected.
Now I have 2 list (s) in my application, I need to apply this style only to a specific list, while the other remains the default scroll, any idea?
It drives me crazy.
Thank.
source
share