如何在运行时创建DataTemplate?
我已经在 XAML 中定义了 DataTemplate,但是我需要将其更改为在运行时定义,因为它的绑定是动态的。
<UserControl.Resources>
<DataTemplate x:Key="myCellTemplate">
<TextBlock Text="{Binding Description}" Margin="4"/>
</DataTemplate>
</UserControl.Resources>
有什么方法可以在代码隐藏中定义它吗? 谢谢。
I have defined the DataTemplate in the XAML, however I need to change it to be defined at run time, because its binding is dynamic.
<UserControl.Resources>
<DataTemplate x:Key="myCellTemplate">
<TextBlock Text="{Binding Description}" Margin="4"/>
</DataTemplate>
</UserControl.Resources>
Is there any way to define it in code-behind?
Thank you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您也许可以使用自定义 来完成您需要的任务DataTemplateSelector,如果可能的话,我建议采用这种方法。也就是说,可以在代码中创建 DataTemplate:
在此上下文中,
type
是您希望作为模板根的可视元素的类型。如有必要,您可以使用工厂添加其他元素,但在我使用此工厂的一种情况下,我只是创建了 UserControl 元素来表示我动态创建的不同模板。抱歉,Silverlight 显然不支持这一点。在 Silverlight 中,您必须使用 XamlReader 。
You might be able to accomplish what you need with a custom DataTemplateSelector and I'd recommend that approach, if possible. That said, it is possible to create a DataTemplate in code:
In this context,
type
is the type of visual element you want to have as the root of your template. If necessary, you could add additional elements using the factory, but in the one case where I've used this, I simply created UserControl elements to represent the different templates I was dynamically creating.My apologies, this apparently isn't supported in Silverlight. In Silverlight, you have to use XamlReader.