CompositeCollection / CollectionViewSource混淆

我对使用这些类型时数据绑定的工作原理有些困惑。

我读过你不能做到以下几点

public partial class Window1 : Window
    {
        public ObservableCollection<string> Items { get; private set; }

        public Window1()
        {
            Items = new ObservableCollection<string>() { "A", "B", "C" };
            DataContext = this;
            InitializeComponent();
        }
    }

<Window x:Class="WpfApplication25.Window1"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">

    <ComboBox>
        <ComboBox.ItemsSource>
            <CompositeCollection>
                <CollectionContainer Collection="{Binding Items}"/>
            </CompositeCollection>
        </ComboBox.ItemsSource>
    </ComboBox>
</Window>

因为CompositeCollection没有datacontext的概念,所以使用绑定的任何东西都必须设置Source属性。 如下所示:

<Window x:Class="WpfApplication25.Window1"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">

    <Window.Resources>
        <CollectionViewSource x:Key="list" Source="{Binding Items}"/>
    </Window.Resources>

    <ComboBox Name="k">
        <ComboBox.ItemsSource>
            <CompositeCollection>
               <CollectionContainer Collection="{Binding Source={StaticResource list}}"/>
            </CompositeCollection>
        </ComboBox.ItemsSource>
    </ComboBox>
</Window>

但那是如何工作的? 它将源设置为某个东西,但是在这种情况下,CollectionViewSource使用一个datacontext(因为它没有明确设置源)。

那么因为“list”是在Window的资源中声明的,这是否意味着它获得了Windows DataContext? 在这种情况下,为什么以下不起作用?

<Window x:Class="WpfApplication25.Window1"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">

    <Window.Resources>
        <Button x:Key="menu" Content="{Binding Items.Count}"/>
    </Window.Resources>

    <ComboBox Name="k">
        <ComboBox.ItemsSource>
            <CompositeCollection>
                <ContentPresenter Content="{Binding Source={StaticResource menu}}"/>
            </CompositeCollection>
        </ComboBox.ItemsSource>
    </ComboBox>
</Window>

你是对的CompositeCollection没有datacontext概念,所以它不能继承它的父类。

来自MSDN:
CompositeCollection can contain items such as strings, objects, XML nodes, elements, as well as other collections. An ItemsControl uses the data in the CompositeCollection to generate its content according to its ItemTemplate. For more information about using ItemsControl objects to bind to collections, see the Binding to Collections section of the Data Binding Overview.

对你的问题
But how is that working? it sets the source to something, but that something, in this case a CollectionViewSource uses a DataContext (as its not explicitly setting a source).

我猜你认为它, Collection DependecyProperty可以绑定到任何IEnumerable类型,所以只要创建并实现IEnumerable ,集合的创建方式都无关紧要。
在你的情况下,CVS从Window继承DataContext,然后绑定到Items

关于你的第二个例子,它不起作用,因为ContentPesenter需要dataContext工作,因为它可以继承它,绑定机制只是将它自己设置为dataContext,即使你试图将内容Source绑定到按钮,你忘记设置路径,我想这就是为什么它被忽略。 所有你必须做的工作就是这样设置它:

<ContentPresenter Content="{Binding Source={StaticResource menu}, Path=Content}"/
链接地址: http://www.djcxy.com/p/71599.html

上一篇: CompositeCollection/CollectionViewSource confusion

下一篇: measure area of irregular polygon in android