5

因为我知道已经发布了很多关于依赖属性的帖子,所以我一直在搜索和搜索,但我只是还没有看到任何有有效解决方案的东西。我正在尝试将我的 ViewModel 中的 ObservableCollection 绑定到我的 AutoCompleteBox。我的 ViewModel 正在返回数据,Getter 被击中。但是,在那之后,控件的 SetValue 或 OnItemsSourcePropertyChanged 不会触发。有什么想法可能是错的吗?

我有这样的控制:

[ContentProperty(Name = "ItemsSource")]
public partial class AutoCompleteBox : Control
{
    //local stuff
    private ListBox lb;
    private List<Person> _items;
    private ObservableCollection<Person> _view;

    public AutoCompleteBox() : base()
    {
        DefaultStyleKey = typeof(AutoCompleteBox);
        Loaded += (sender, e) => ApplyTemplate();
    }
    protected override void OnApplyTemplate()
    {
        this.lb = this.GetTemplateChild("Selector") as ListBox;
        base.OnApplyTemplate();

    }
    #region ItemsSource

    public IEnumerable ItemsSource
    {
        get { return GetValue(ItemsSourceProperty) as ObservableCollection<Person>; }
        set { SetValue(ItemsSourceProperty, value); } //Never gets called
    }

    public static readonly DependencyProperty ItemsSourceProperty =
        DependencyProperty.Register(
            "ItemsSource",
            typeof(IEnumerable),
            typeof(AutoCompleteBox),
            new PropertyMetadata(null, OnItemsSourcePropertyChanged));

    private static void OnItemsSourcePropertyChanged(DependencyObject d, DependencyPropertyChangedEventArgs e)
    {
       //Never gets called :(
    }
    #endregion

    public String SearchText
    {
        get { return GetValue(SearchTextProperty) as String; }
        set
        {
            SetValue(SearchTextProperty, value);
        }
    }


    public static readonly DependencyProperty SearchTextProperty =
        DependencyProperty.Register(
            "SearchText",
            typeof(String),
            typeof(AutoCompleteBox),
            new PropertyMetadata(null, OnSearchTextPropertyChanged));

    private static void OnSearchTextPropertyChanged(DependencyObject d, DependencyPropertyChangedEventArgs e)
    {
         //gets fired when loaded, with data being bound
    }

}

以下是它是如何使用控件的:

<toolkit:AutoCompleteBox Grid.Row="5" Grid.Column="2" ItemsSource="{Binding Persons,Mode=TwoWay}" SearchText="WhatTheHell"/>

作为测试和简单起见,我为 SearchText 创建了一个 String DependencyProperty。如果我绑定 SearchText,它工作正常,调用 OnSearchTextPropertyChanged:

<toolkit:AutoCompleteBox Grid.Row="5" Grid.Column="2" ItemsSource="{Binding Persons,Mode=TwoWay}" SearchText="{Binding SearchText}"/>

还有其他人在使用 WinRT 时遇到过这些问题吗?或者看到我在做什么有什么问题?

4

3 回答 3

5

有2个快速解决方案

(这里的BaseClass是例如一个抽象类或您从中派生的接口以及您尝试绑定到依赖属性的实例)

解决方案1:

注册依赖属性时需要更改typeof(BaseClass)为。typeof(object)Getter 和 setter 可以继续使用您的BaseClass,但如果您为此依赖属性设置了不同的类型实例,请注意 InvalidCastException。

        public BaseClass Item
        {
            get { return (BaseClass)GetValue(ItemProperty); }
            set { SetValue(ItemProperty, value); }
        }
        public static readonly DependencyProperty ItemProperty =
            DependencyProperty.Register("Item", typeof(object), typeof(MyUserControl), new PropertyMetadata(null));

解决方案2:

在代码的某处创建一个虚拟依赖属性(例如,在您尝试创建的依赖属性之后),该属性将具有所有派生类型的类型。像这样:

#region DummyProperty

public DerivedClass1 Dummy
{
    get { return (DerivedClass1)GetValue(DummyProperty); }
    set { SetValue(DummyProperty, value); }
}

public static readonly DependencyProperty DummyProperty =
    DependencyProperty.Register("Dummy", typeof(DerivedClass1), typeof(MyUserControl), new PropertyMetadata(default(DerivedClass1)));

#endregion

这里DerivedClass1派生自BaseClass

为什么?

我想原因是 XAML 对您的派生类型一无所知,只知道BaseClass。因此,为每种类型创建一个虚拟依赖属性应该可以解决问题。

于 2014-09-24T18:02:52.903 回答
2

我会尝试检查绑定是否曾经使用 DebugConverter 触发 - 检查WinRT XAML 工具包中的BindingDebugConverter - 将其设置为绑定的转换器并查看它是否以及何时中断(它是在 Convert 还是 ConvertBack 中,正在设置什么值ETC。)。

如果这没有帮助 - 检查您的 DataContext 是否设置正确。

*编辑 1

如果您正在查看的是绑定集合的项目的更改 - 您可以检查 ItemsSource 是否为INotifyCollectionChanged并且如果为 true - 订阅CollectionChanged事件以查看更改。否则 - 您可以修改您的控件以从ItemsControl继承并覆盖GetContainerForItemOverrideIsItemItsOwnContainerOverride等方法。

*编辑 2

Windows 8 Consumer Preview 中的框架中似乎存在与使用 IEnumerable 作为依赖属性类型相关的错误。使用 object 作为类型解决了这个问题。如果启用本机代码调试,您将看到此绑定异常:

错误:转换器无法转换类型 'System.Collections.ObjectModel.ObservableCollection`1[[ACBDP.Person, ACBDP, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]], System, Version=4.0.0.0 的值, Culture=neutral, PublicKeyToken=b77a5c561934e089' 输入'IEnumerable'; BindingExpression:路径='Persons' DataItem='ACBDP.BlankPageViewModel,ACBDP,版本=1.0.0.0,Culture=neutral,PublicKeyToken=null';目标元素是'ACBDP.AutoCompleteBox'(名称='null');目标属性是“ItemsSource”(类型“IEnumerable”)。

于 2012-05-11T06:30:32.527 回答
0

将 typeof(IEnumerable) 更改为 typeof(object)

于 2012-10-11T12:46:54.783 回答