如何在 WPF 中动态设置 ItemTemplate?
使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您的树视图控件需要为您的项目使用不同的模板,您应该实现 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.
如果模板是在您的中定义的 直接部分:
如果它位于窗口深处的某个位置,例如在中 部分或其他内容,我认为这会起作用:
如果它在应用程序的其他地方,我认为 App.FindResource("SomeTemplate") 会起作用。
If the template is defined in your <Window.Resources> section directly:
If it's somewhere deep within your window, like in a <Grid.Resources> section or something, I think this'll work:
And if it's elsewhere in your application, I think App.FindResource("SomeTemplate") will work.