WPF 自定义滚动条 - Zune 样式滚动条
我正在尝试设置一个自定义 ScrollBar 以匹配 Zune Metro 主题。我正在从 Silverlight 主题移植 ScrollBar。下面链接中的代码不起作用。有什么想法吗?
示例代码发布在 http://pastie.org/2337083 因为我不能在这里发布超过 30,000 个字符。
I am trying to setup a custom ScrollBar to match the Zune metro theme. I am porting a ScrollBar from a Silverlight theme. The code in the link below is not working though. Any ideas?
Sample code is posted at http://pastie.org/2337083 as I can't post more than 30,000 characters here.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
粘贴的示例中缺少一堆画笔。
您可以从以下位置获取它们:
https://nroute.svn.codeplex.com/svn/nRoute4.5_Samples/Desktop/nNetflix/nRoute.Samples.Netflix/Assets/
只需将 Brushes.xaml 添加到 ResourceDictionary 即可。
There's a bunch of missing brushes from the pasted example.
You can get them from:
https://nroute.svn.codeplex.com/svn/nRoute4.5_Samples/Desktop/nNetflix/nRoute.Samples.Netflix/Assets/
Just add the Brushes.xaml to the ResourceDictionary.
好的,我在发布此消息后立即解决了该问题。只需将 Pastie 代码片段中的第 #424 行从: 更改
为以下内容:
更改后,问题现已解决并且自定义 ScrollBar 可以工作。
Okay I have solved the issue just after posting this message. Simply changing the line #424 in Pastie snippet from:
to the following:
After changing that the issue is now resolved and the custom ScrollBar works.