2
我用C#UWP編寫。 ScrollBar
造型不起作用,但一些ScrollViewer
造型很好。滾動條的樣式不起作用
我後面的代碼:
Style ScrollBarStyle = new Style(typeof(ScrollBar));
ScrollBarStyle.Setters.Add(new Setter(ScrollBar.BackgroundProperty, new SolidColorBrush(Colors.Blue)));
Style ScrollViewerStyle = new Style(typeof(ScrollViewer));
ScrollViewerStyle.Setters.Add(new Setter(ScrollViewer.BackgroundProperty, new SolidColorBrush(Colors.Blue)));
Application.Current.Resources.Add(typeof(ScrollViewer), ScrollViewerStyle);
Application.Current.Resources.Add(typeof(ScrollBar), ScrollBarStyle);
它可以用C#代碼嗎?我只想更改滾動條的顏色 – Naduxa
使用c#代碼更改滾動條背景顏色並不容易。如果你只想改變scrollBar的顏色。您只能在默認[樣式](https://msdn.microsoft.com/en-us/library/windows/apps/mt299150.aspx)上更改'root'網格背景顏色。 –
非常感謝! – Naduxa