如何设置wpf滑块的拇指样式?
我在这里阅读了有关样式的内容:
http://msdn. microsoft.com/en-us/library/cc278073(v=VS.95).aspx
我创建了一个带有滑块和 UserControl.Resources 部分的 UserControl。我粘贴了拇指样式,但有些标签无法识别,例如 vsm:VisualStateManager (我使用的是 VS2010),为什么?
I read about style here:
http://msdn.microsoft.com/en-us/library/cc278073(v=VS.95).aspx
I created a UserControl with slider and UserControl.Resources section. I paste the thumb style but some tag are not recognized like vsm:VisualStateManager (I'm using VS2010) why ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是 Silverlight 的文档。您可能需要 WPF 的文档:
编辑:
需要明确的是,如果您使用 Silverlight,则应该使用 Silverlight 模板和样式;如果您使用 WPF,则应该使用 WPF 模板和样式。
无论如何,VisualStateManager 是 Silverlight4 和 WPF4 的成熟部分,因此,如果您看到带有“vsm:”命名空间的模板,最简单的选择是删除前缀,其中 -你曾经看到过它。
That is the documentation for Silverlight. You probably want the documentation for WPF:
Edit:
Just to be clear, if you are using Silverlight, you should use Silverlight templates and styles; if you are using WPF, you should use WPF templates and styles.
In any case, the
VisualStateManager
is a full-fledged part of both Silverlight4 and WPF4, so if you see a template with the "vsm:" namespace, the simplest option is to just remove the prefix where-ever you see it.