如何在 WPF 中动态设置 ItemTemplate?

发布于 2024-07-04 15:11:46 字数 148 浏览 7 评论 0原文

使用 WPF,我有一个 TreeView 控件,我想通过过程代码动态设置其 ItemTemplate。 我该怎么做呢? 我想我需要在某个地方找到资源。

myTreeViewControl.ItemTemplate =   ??

Using WPF, I have a TreeView control that I want to set its ItemTemplate dynamically through procedural code. How do I do this? I assume I need to find the resource somewhere.

myTreeViewControl.ItemTemplate =   ??

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

丑疤怪 2024-07-11 15:11:46

如果您的树视图控件需要为您的项目使用不同的模板,您应该实现 DataTemplateSelector 类并将其实例设置为您的树视图。 据我记得有一个 DataTemplateSelector 属性。

if your treeview control requires different templates for your items, you should implement DataTemplateSelector class and set it's instance to your tree view. as far as i remember there is a property of DataTemplateSelector.

败给现实 2024-07-11 15:11:46

如果模板是在您的中定义的 直接部分:

myTreeViewControl.ItemTemplate = this.Resources["SomeTemplate"] as DataTemplate;

如果它位于窗口深处的某个位置,例如在中 部分或其他内容,我认为这会起作用:

myTreeViewControl.ItemTemplate = this.FindResource("SomeTemplate") as DataTemplate;

如果它在应用程序的其他地方,我认为 App.FindResource("SomeTemplate") 会起作用。

If the template is defined in your <Window.Resources> section directly:

myTreeViewControl.ItemTemplate = this.Resources["SomeTemplate"] as DataTemplate;

If it's somewhere deep within your window, like in a <Grid.Resources> section or something, I think this'll work:

myTreeViewControl.ItemTemplate = this.FindResource("SomeTemplate") as DataTemplate;

And if it's elsewhere in your application, I think App.FindResource("SomeTemplate") will work.

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