已经通过'ListView'注册的属性

时间:2013-01-23 10:49:20

标签: c# wpf mvvm visual-studio-2012

我有这段代码:

using System.Collections;
using System.Windows;
using System.Windows.Controls;

public static class SelectedItems
{
    private static readonly DependencyProperty SelectedItemsBehaviorProperty = DependencyProperty.RegisterAttached(
        "SelectedItemsBehavior",
        typeof(SelectedItemsBehavior),
        typeof(ListView),
        null);

    public static readonly DependencyProperty ItemsProperty = DependencyProperty.RegisterAttached(
        "Items",
        typeof(IList),
        typeof(SelectedItems),
        new PropertyMetadata(null, ItemsPropertyChanged));

    public static void SetItems(ListView listView, IList list)
    {
        listView.SetValue(ItemsProperty, list);
    }

    public static IList GetItems(ListView listView)
    {
        return listView.GetValue(ItemsProperty) as IList;
    }

    private static void ItemsPropertyChanged(DependencyObject d, DependencyPropertyChangedEventArgs e)
    {
        var target = d as ListView;
        if (target != null)
        {
            CreateBehavior(target, e.NewValue as IList);
        }
    }

    private static void CreateBehavior(ListView target, IList list)
    {
        var behavior = target.GetValue(SelectedItemsBehaviorProperty) as SelectedItemsBehavior;
        if (behavior == null)
        {
            behavior = new SelectedItemsBehavior(target, list);
            target.SetValue(SelectedItemsBehaviorProperty, behavior);
        }
    }
}

public class SelectedItemsBehavior
{
    private readonly ListView _listView;
    private readonly IList _boundList;

    public SelectedItemsBehavior(ListView listView, IList boundList)
    {
        _boundList = boundList;
        _listView = listView;
        _listView.SelectionChanged += OnSelectionChanged;
    }

    private void OnSelectionChanged(object sender, SelectionChangedEventArgs e)
    {
        _boundList.Clear();

        foreach (var item in _listView.SelectedItems)
        {
            _boundList.Add(item);
        }
    }
}

XAML:

    <ListView SelectionMode="Extended" ItemsSource="{Binding Computers}" Views:SelectedItems.Items="{Binding SelectedComputers}" BorderBrush="Transparent" Height="100" VerticalAlignment="Top">
        <ListView.ItemsPanel>
            <ItemsPanelTemplate>
                <StackPanel Orientation="Horizontal"  HorizontalAlignment="Left" VerticalAlignment="Top"  />
            </ItemsPanelTemplate>
        </ListView.ItemsPanel>
        <ListView.Background>
            <SolidColorBrush Color="Black" />
        </ListView.Background>
    </ListView>

我的错误是

  

'SelectedItemsBehaviour'属性已经注册   '列表视图'。

我在两个单独的ListViews上的两个地方使用了此代码,并且都会出现此错误。

为什么我得到它,一切都是静态的。我正在使用MVVM设计模式。

谢谢,

1 个答案:

答案 0 :(得分:12)

RegisterAttachedownerType)的第三个参数必须始终是声明属性的类,此处为SelectedItems

这种类型的潜在“目标”类型是一种常见的误解。

private static readonly DependencyProperty SelectedItemsBehaviorProperty = DependencyProperty.RegisterAttached(
    "SelectedItemsBehavior",
    typeof(SelectedItemsBehavior),
    typeof(SelectedItems), // here
    null);