如何在运行时创建DataTemplate?

发布于 2024-08-31 11:32:31 字数 319 浏览 2 评论 0原文

我已经在 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 技术交流群。

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

发布评论

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

评论(1

难以启齿的温柔 2024-09-07 11:32:31

您也许可以使用自定义 来完成您需要的任务DataTemplateSelector,如果可能的话,我建议采用这种方法。也就是说,可以在代码中创建 DataTemplate:

Type type = typeof(MyUserControl); //for example    
var template = new DataTemplate();
template.VisualTree = new FrameworkElementFactory(type);
return template;

在此上下文中,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:

Type type = typeof(MyUserControl); //for example    
var template = new DataTemplate();
template.VisualTree = new FrameworkElementFactory(type);
return template;

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.

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