绑定到子控件内行为的依赖项 属性

Binding to a dependency property of a behavior inside a child control

我有以下具有自定义依赖项的用户控件 属性

ThumbnailListView 用户控件

        <ListView 
            ItemsSource="{Binding}" 
            BorderThickness="0,0,0,0" 
            HorizontalAlignment="Center" 
            Background="White" 
            SelectionChanged="ListView_SelectionChanged"
            AllowDrop="True">
            <i:Interaction.Behaviors>
                <behaviors:DragDropBehavior OnDragDrop="{Binding Path=ItemDragDrop}"></behaviors:DragDropBehavior>
            </i:Interaction.Behaviors>
            <ListView.ItemContainerStyle>
                <Style TargetType="{x:Type ListBoxItem}">
                    <Style.Triggers>
                        <DataTrigger Binding="{Binding RelativeSource={RelativeSource Self}, Converter={StaticResource IsLastListItem}}" Value="False">
                            <Setter Property="Margin" Value="0,0,0,20"></Setter>
                        </DataTrigger>
                    </Style.Triggers>

                    <Setter Property="Background" Value="Gray"></Setter>
                    <Setter Property="IsSelected" Value="{Binding Path=IsSelected, Mode=TwoWay}"></Setter>                      
                </Style>
            </ListView.ItemContainerStyle>

            <ListView.ItemTemplate>
                <DataTemplate>
                     <Image Source="{Binding Thumbnail, Converter={StaticResource ImageConverter}}"></Image>
                </DataTemplate>
            </ListView.ItemTemplate>
        </ListView>

依赖属性 ThumbnailListView的ItemDragDrop

    public static ICommand GetItemDragDrop(DependencyObject obj)
    {
        return (ICommand)obj.GetValue(ItemDragDropProperty);
    }

    public static void SetItemDragDrop(DependencyObject obj, ICommand value)
    {
        obj.SetValue(ItemDragDropProperty, value);
    }

    public static DependencyProperty ItemDragDropProperty = DependencyProperty.RegisterAttached("ItemDragDrop",
        typeof(ICommand), typeof(ThumbnailListView));

    public ICommand ItemDragDrop
    {
        get
        {
            return (ICommand)GetValue(ItemDragDropProperty);
        }

        set
        {
            SetValue(ItemDragDropProperty, value);
        }
    }

NewScansView 用户控件

        <DockPanel Dock="Top">
            <ListView ItemsSource="{Binding Scans}" Width="500">
                <ListView.ItemTemplate>
                    <DataTemplate>
                        <TextBlock Text="{Binding Caption}" Margin="5,0,0,0"></TextBlock>
                    </DataTemplate>
                </ListView.ItemTemplate>

                <ListView.ItemContainerStyle>
                    <Style TargetType="{x:Type ListViewItem}">
                        <Setter Property="IsSelected" Value="{Binding Path=IsSelected, Mode=TwoWay}"/>
                    </Style>
                </ListView.ItemContainerStyle>
            </ListView>
            <Views:ThumbnailListView DataContext="{Binding SelectedItem.Pages}" ItemDragDrop="{Binding SelectedItem.DragDropCommand}" VerticalAlignment="Stretch" Width="200" />
            <Views:PageListView DataContext="{Binding SelectedItem.Pages}" VerticalAlignment="Stretch" />
        </DockPanel>

NewScansView xaml 包含一个 ThumbnailListView 控件并将 ThumbnailListView 的依赖项 属性 ItemDragDrop 绑定到 SelectedItem class 中的命令。

在 ThumbnailListView 用户控件中,我有一个行为 DragDropBehavior,它具有依赖项 属性 OnDragDrop。

我正在尝试将 OnDragDrop 绑定到 ItemDragDrop,以便在拖放操作完成时执行 SelectedItem class 中的命令。

问题是它似乎无法找到 ThumbnailListView 上的 ItemDragDrop 属性 或所选项目的 DragDropCommand class。

我想知道我做错了什么以及如何设置它?

ThumbnailListView.DataContext 设置为 SelectedItem.Pages,我非常怀疑 SelectedItem.Pages 是否有一个名为 SelectedItem.DragDropCommand 的 属性。

更改 ItemDragDrop 绑定的 Source 以指定它使用 ThumnailListView.DataContext 以外的内容作为该绑定的来源。

<DockPanel x:Name="MyDockPanel" Dock="Top">
    ...
    <Views:ThumbnailListView DataContext="{Binding SelectedItem.Pages}" 
                             ItemDragDrop="{Binding SelectedItem.DragDropCommand, ElementName=MyDockPanel}" ... />
    ...
</DockPanel>       

您可能还需要为您的行为绑定做同样的事情 - 更改它的来源,使其指向 ThumbnailListView 而不是 ThumbnailListView.DataContext

<i:Interaction.Behaviors>
    <behaviors:DragDropBehavior OnDragDrop="{Binding Path=ItemDragDrop, RelativeSource={RelativeSource AncestorType={x:Type local:ThumbnailListView}}}" />
</i:Interaction.Behaviors>

或者更好的是,为页面创建一个 DependencyProperty,这样您就不会依赖特定的 DataContext 对象类型

<Views:ThumbnailListView PagesDependencyProperty="{Binding SelectedItem.Pages}" ItemDragDrop="{Binding SelectedItem.DragDropCommand}" .. />

或者编辑您的控件,使其假定特定类型用于 DataContext,并使用隐式 DataTemplate 始终使用此控件绘制该类型的对象(对我来说更常见):

<ListView ItemsSource="{Binding Pages}" ...>
    <i:Interaction.Behaviors>
        <behaviors:DragDropBehavior OnDragDrop="{Binding DragDropCommand}" />
    </i:Interaction.Behaviors>
    ...
</ListView>

隐式数据模板:

<DataTemplate DataType="{x:Type local:WhateverSelectedItemDataTypeIs}}">
    <!-- DataContext will automatically set to WhateverSelectedItemDataTypeIs -->
    <Views:ThumbnailListView /> 
</DataTemplate>