当绑定值之一更改时,TreeView 中的多重绑定会折叠 TreeViewItems
我有一个 TreeView,它绑定到一个具有属性名称和两个列表的类型视图对象。 当我在展开的列表之一中添加元素时,它会保持展开状态,这就是我想要的。 问题是当我更改 View1 的名称时,所有 Multibinging 绑定都会刷新,并且 View1 中的所有展开列表(如果有)都会折叠,但 View1 仍然展开。 有什么方法可以避免这种行为,以便当 Name 的值更改时,转换器以某种方式仅更改更改后的 Value 而不合并其他 Bindings 。 谢谢
<HierarchicalDataTemplate DataType="{x:Type local:View}">
<HierarchicalDataTemplate.ItemsSource>
<MultiBinding Converter="{StaticResource folderConverter}" ConverterParameter=",A,B">
<Binding Path="Name"/>
<Binding Path="List1"/>
<Binding Path="List2"/>
</MultiBinding>
</HierarchicalDataTemplate.ItemsSource>`
I have a TreeView thats binding to an Object of Type View with an attribute Name and two Lists.
When i add Elements in one of the expanded Lists it stays expanded and thats what i want .
The Problem is when i change The Name of View1 all the Multibinging Bindings are refreshed and all expanded Lists if any in the View1 collapses, but the View1 is still expanded .
Is there any Way to avoid this behaviour so that when the value of the Name changes the converter somehow only changes the changed Value without collasing other Bindings .
Thank you
<HierarchicalDataTemplate DataType="{x:Type local:View}">
<HierarchicalDataTemplate.ItemsSource>
<MultiBinding Converter="{StaticResource folderConverter}" ConverterParameter=",A,B">
<Binding Path="Name"/>
<Binding Path="List1"/>
<Binding Path="List2"/>
</MultiBinding>
</HierarchicalDataTemplate.ItemsSource>`
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您的设置看起来像是
CompositeCollection< /code>
可能会有所帮助,即使您更改了一部分,它也应该阻止
ItemsSource
的完全重新创建。Your setup looks like something in which a
CompositeCollection
might help, it should prevent the complete recreation of theItemsSource
even if you change a part.