7

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

我读过您不能执行以下操作

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 使用数据上下文(因为它没有明确设置源)。

那么既然在Window的资源中声明了“list”,是不是就意味着它获取了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>
4

1 回答 1

4

你是对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).

我猜你想多了,CollectionDependecyProperty 可以绑定到任何IEnumerable类型,所以只要它的 created 和 implements 集合的创建方式并不重要IEnumerable
在您的情况下,CVS 从 Window 继承 DataContext 然后绑定到Items.

关于您的第二个示例,它不起作用,因为 ContentPesenter 需要 dataContext 才能工作,所以因为它可以继承它,所以即使您尝试将内容绑定Source到按钮,绑定机制也只是将自己设置为 dataContext,您忘记设置路径,我想这就是它被忽略的原因。要让它工作,你所要做的就是像这样设置它:

<ContentPresenter Content="{Binding Source={StaticResource menu}, Path=Content}"/
于 2013-07-11T14:07:00.840 回答