在 Silverlight 中使用属性绑定更改 DataTemplate

发布于 2024-12-17 10:22:27 字数 1293 浏览 0 评论 0原文

我正在尝试使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

守望孤独 2024-12-24 10:22:27

不确定您是否已经弄清楚这一点,但转换器定义在资源中与数据模板的关系的放置将是它工作和不工作之间的区别。

转换器需要放置在数据模板之前。

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文