English 中文(简体)
ListBox.SelectedItems 的双向手动绑定实现?
原标题:
  • 时间:2009-01-05 18:41:14
  •  标签:

我一直在尝试找到一种简单 / 巧妙的方式来实现对ListBox.SelectedItems的绑定。如果您自己尝试过,您将会知道,使用BindingExtension的标记绑定将不起作用 - 该属性不支持它。因此,您只能连接SelectionChanged的处理程序并尝试该路线。我最接近的一个是这篇文章:

把这个翻译成中文:http://alexshed.spaces.live.com/blog/cns!71C72270309CE838!149.entry

更新:上述提到的博客已不再可用,该作者的最新博客在此处,而我能找到的与所引用博客文章最接近的是这个 StackOverflow 答案。

它将所有必要的C#实现为一个方便的附加属性。但是它实现了“绑定”作为单向的,源到目标。我想要双向绑定。

有任何想法吗?

问题回答

我找到了一个优雅的解决方案,并刚刚找到时间写了一篇博客文章。

我所做的是创建一个关联的属性“SynchronizedSelectedItems”,您可以在ListBox(或实际上是DataGrid)上进行设置。您可以将其数据绑定到一个集合上,然后通过一些魔术,ListBox的SelectedItems属性和您的集合始终保持同步。您可以从我的博客文章中下载所有代码。

"魔术"是一个类,它监听任何一个集合中的 CollectionChanged 事件,并将更改传播到另一个集合中。

我一直在寻找一个解决方案,但提出的方案似乎过于复杂。所以,这里提供了一种新的双向绑定方案,它仅限于一个附加属性,并使用弱事件处理来监视定义的依赖属性的更改。我没有花费任何时间来完善它,但它确实起作用。


using System;
using System.Collections;
using System.Collections.Generic;
using System.Collections.Specialized;
using System.Windows;
using System.Windows.Controls;

namespace WpfApplication2
{
    public class ListBoxHelper
    {
        private static Dictionary<int, bool> SynchToDPInProcessDictionary = new Dictionary<int, bool>();
        private static Dictionary<int, bool> SynchToLBInProcessDictionary = new Dictionary<int, bool>();

        public static readonly DependencyProperty SelectedItemsProperty =
            DependencyProperty.RegisterAttached("SelectedItems", typeof(IList), typeof(ListBoxHelper),
                new FrameworkPropertyMetadata((IList)null,
                    new PropertyChangedCallback(OnSelectedItemsChanged)));

        public static IList GetSelectedItems(DependencyObject d)
        {
            return (IList)d.GetValue(SelectedItemsProperty);
        }

        public static void SetSelectedItems(DependencyObject d, IList value)
        {
            d.SetValue(SelectedItemsProperty, value);
        }

        private static void OnSelectedItemsChanged(DependencyObject d, DependencyPropertyChangedEventArgs e)
        {
            var listBox = d as ListBox;
            if (listBox == null) 
                throw new InvalidOperationException("ListBoxHelper should only be used with ListBox or ListBox derived classes (like ListView).");

            int hashcode = listBox.GetHashCode();

            // Gets set on the initial binding.
            if (!SynchToDPInProcessDictionary.ContainsKey(hashcode))
            {
                SynchToDPInProcessDictionary[hashcode] = false;
                SynchToLBInProcessDictionary[hashcode] = false;

                var observableCollection = GetSelectedItems(listBox) as INotifyCollectionChanged;
                if (observableCollection != null)
                {
                    // Create a weak CollectionChanged event handler on the SelectedItems property
                    // that synchronizes the collection back to the listbox.
                    CollectionChangedEventManager.AddHandler(observableCollection,
                        delegate(object sender, NotifyCollectionChangedEventArgs e2)
                        {
                            SyncToLBSelectedItems(GetSelectedItems(d), (ListBox)d);
                        });
                }
            }

            SynchToDPSelectedItems(listBox);
            listBox.SelectionChanged += delegate
            {
                SynchToDPSelectedItems(listBox);
            };
        }


        private static void SynchToDPSelectedItems(ListBox listBox)
        {
            int hashcode = listBox.GetHashCode();
            if (SynchToLBInProcessDictionary[hashcode]) return;

            SynchToDPInProcessDictionary[hashcode] = true;
            try
            {
                IList dpSelectedItems = GetSelectedItems(listBox);
                dpSelectedItems.Clear();
                if (listBox.SelectedItems != null)
                {
                    foreach (var item in listBox.SelectedItems)
                        dpSelectedItems.Add(item);
                }
            }
            finally
            {
                SynchToDPInProcessDictionary[hashcode] = false;
            }
        }

        private static void SyncToLBSelectedItems(IList dpSelectedItems, ListBox listBox)
        {
            int hashcode = listBox.GetHashCode();
            if (SynchToDPInProcessDictionary[hashcode]) return;

            SynchToLBInProcessDictionary[hashcode] = true;
            try
            {
                listBox.SelectedItems.Clear();
                if (dpSelectedItems != null)
                {
                    foreach (var item in dpSelectedItems)
                        listBox.SelectedItems.Add(item);
                }
            }
            finally
            {
                SynchToLBInProcessDictionary[hashcode] = false;
            }
        }
    }
}




相关问题
热门标签