Silverlight 中自定义控件的多个控件模板
我正在创建一个自定义控件。在不同的视觉状态下,控件的内容会有很大的不同。
我可以将不同的控件模板应用到同一个自定义控件来实现上述目的吗?那就是为一个自定义控件定义多个控件模板?如果没有,有什么线索可以告诉我如何在不拥有与状态一样多的自定义/用户控件的情况下执行此操作吗?
I am creating a custom control. The contents of the control will differ a lot when in different visual states.
Can I to achieve the above, apply different control templates to the same custom control? That is define more than one control template for a custom control? If not, any clues as to how I can do this, without have as many custom/user controls as there are states?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以在单个 ControlTemplate 内定义视觉状态以及这些状态之间的转换。查找“VisualStateManager”。
You could define visual states inside a single ControlTemplate and also transitions between those states. Look for 'VisualStateManager'.