tags:

views:

203

answers:

1

I have a style for the WPF Toolkit DataGrid, how can I change the style of the ScrollBar without using the Property="Template"? Is that Possible?

+1  A: 

Write a style for ScrollBar, and add it to your app.xaml, don't give it any key(x:Key), it will be applied to all SrollBar instances and that inside DataGrid too.

viky