在 Silverlight 中使用属性绑定更改 DataTemplate
我正在尝试使用 Eugene Akinshin 的代码来实现此功能: http://forums.silverlight .net/t/237947.aspx/1
这似乎是绑定到现有属性的一种非常好的方法,并且意味着配置都可以在 XAML 中定义。
但是,我无法让它工作。
我定义要使用的模板,如下所示:
<Converters:TemplateSelectorConverter x:Key="templateConverter">
<Converters:TemplateSelectorCase TemplateReference="Minimised" Template="{StaticResource SmallOrders}"/>
<Converters:TemplateSelectorCase TemplateReference="Restored" Template="{StaticResource MediumOrders}"/>
<Converters:TemplateSelectorCase TemplateReference="Maximised" Template="{StaticResource LargeOrders}"/>
</Converters:TemplateSelectorConverter>
然后设置我的 ListBox
的项目模板,如下所示:
ItemTemplate="{Binding CurrentState, Converter={StaticResource templateConverter}}"
CurrentState
是“最小化”、“最大化”的字符串或“恢复”(我编辑了链接的示例,将字符串作为键而不是整数),并默认设置为“最小化”,但我得到的只是 Cannot create 的列表我的
。ListBox
中的[我的对象类型]
这些模板肯定可以工作,因为我可以在 ViewModel 中公开视图并在代码中设置 DataTemplate,并且存在依赖于相同的 CurrentState
属性的视觉状态,因此我知道视图可以访问属性正确。不幸的是,如果我在转换器中的 Convert()
方法上断点,它永远不会被命中。
非常感谢所有建议!
I'm trying to implement this using Eugene Akinshin's code from here: http://forums.silverlight.net/t/237947.aspx/1
It seems like a really nice way to bind to already-existing properties and means the configuration can all be defined in XAML.
However, I can't get it to work.
I'm defining the templates to use like this:
<Converters:TemplateSelectorConverter x:Key="templateConverter">
<Converters:TemplateSelectorCase TemplateReference="Minimised" Template="{StaticResource SmallOrders}"/>
<Converters:TemplateSelectorCase TemplateReference="Restored" Template="{StaticResource MediumOrders}"/>
<Converters:TemplateSelectorCase TemplateReference="Maximised" Template="{StaticResource LargeOrders}"/>
</Converters:TemplateSelectorConverter>
and then setting the item template of my ListBox
like this:
ItemTemplate="{Binding CurrentState, Converter={StaticResource templateConverter}}"
CurrentState
is a string of either 'Minimised', 'Maximised' or 'Restored' (I've edited the linked example to have a string as the key rather than an int) and is set to 'Minimised' by default, but all I get is a list of Cannot create [my object type]
in my ListBox
.
The templates definitely work as I can expose the View in the ViewModel and set the DataTemplate in code, and there are visual states that rely on the same CurrentState
property which work, so I know the View can access the property correctly. Unfortunately, if I breakpoint the Convert()
method in the converter, it never gets hit.
All suggestions greatly appreciated!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不确定您是否已经弄清楚这一点,但转换器定义在资源中与数据模板的关系的放置将是它工作和不工作之间的区别。
转换器需要放置在数据模板之前。
Not sure if you have figured this out or not but placement of the Converter definition in the Resource in relationship to the DataTemplate will be the difference between it working and not working.
The Converter needs to be placed prior to the Data Template.