当绑定值之一更改时,TreeView 中的多重绑定会折叠 TreeViewItems

发布于 2024-11-28 00:44:31 字数 683 浏览 1 评论 0原文

我有一个 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 技术交流群。

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

发布评论

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

评论(1

晨敛清荷 2024-12-05 00:44:31

您的设置看起来像是 CompositeCollection< /code>可能会有所帮助,即使您更改了一部分,它也应该阻止 ItemsSource 的完全重新创建。

Your setup looks like something in which a CompositeCollection might help, it should prevent the complete recreation of the ItemsSource even if you change a part.

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