自定义控件上的可视化状态管理器
我构建了一个扩展内容控制的自定义控件。在这个模型中,我有一个工作正常的零件和状态模型。
然后我使用它作为我的 xaml 的根(将代码放在 Blend 的模板文件夹中)
一切正常,我可以打开一个新的“DaveControl”并获得我想要的功能。
但是,如果我然后在此处添加一些视觉状态,例如alertOnScreen并尝试使用视觉状态管理器,则它不起作用。
事实上,没有列出任何州。
不过 SL3 GotoVisualState 中的行为工作正常!
如何让视觉状态在代码中发挥作用?
I have built a custom control that extends content control. Within this I have a parts and states model that is working fine.
I then use this as the root of my xaml(placing the code in the templates folder in Blend)
Everything works fine, I can open a new 'DaveControl' and get the functionality that I want.
However, If I then add make some visual states here, such as alertOnScreen and try to use the visualstatemanager it doesn't work.
infact there are no states listed.
The Behaviour in SL3 GotoVisualState works fine though!
How can I get the visual state to work in code?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
所以解决方案如下:使用扩展视觉状态管理器!
这是有效的,因为它需要一个框架元素......除其他外。
VisualStateManager.GoToState 无法在 Window 上运行的解决方法
So the solution is the following: Use Extended Visual State Manager!
This works because it takes a Framework Element... amongst other things.
Workaround for VisualStateManager.GoToState not working on Window
您是否已将一组可用状态添加为类上的一组
TemplateVisualState
属性? Blend 使用这些来配置其可用状态列表。你的类通常应该是这样的:-
Have you added the set of available states as a set of
TemplateVisualState
attributes on the class? Blend uses these to configure its list of available states.Your class should generally look like this:-