3

我有一个控件绑定到实现 INotifyPropertyChanged 的​​对象的索引属性。

问题是,我不知道如何通知该特定索引字符串的属性更改信号。

有人告诉我,我可以使用OnPropertyChanged("")通知整个对象需要更改。

但我需要的是像OnPropertyChanged("Some index property string") 这样的东西。

有什么办法吗?

非常感谢。

ps:

我想做的是应用 MVVM 模式。我使用 viewmodel 类来包装一个普通的 POCO 对象。所以当我绑定时,我绑定到[索引属性],这样我就可以通知更改了。这种方法使我免于:

  1. 为我需要的每个属性包装内部域 POCO 对象。
  2. 通知每个包装属性中的属性都发生了变化。

代码

public class ViewModelEx<T_Self, T_Core> : ViewModelEx<T_Self> where T_Self : ViewModelEx<T_Self, T_Core>
{
private static Type _s_coreType = typeof(T_Core);
private static Dictionary<string, PropertyInfo> _s_corePropInfos = new Dictionary<string, PropertyInfo>();

private static PropertyInfo GetPropertyInfo(string prop)
{
    if (_s_corePropInfos.ContainsKey(prop) == false)
        _s_corePropInfos.Add(prop, _s_coreType.GetProperty(prop));

    return _s_corePropInfos[prop];
}

public T_Core Core { get; set; }

public object this[string propName]
{
    get
    {
        return GetPropertyInfo(propName).GetValue(Core, null);
    }
    set
    {
        GetPropertyInfo(propName).SetValue(Core, value, null);
        IsModified = true;
        //RaisePropertyChanged(propName);
        RaisePropertyChanged("");
    }
}

public R Val<R>(Expression<Func<T_Core, R>> expr)
{
    return (R)this[Core.GetPropertyStr(expr)];
}

public void Val<R>(Expression<Func<T_Core, R>> expr, R val)
{
    this[Core.GetPropertyStr(expr)] = val;
}
4

1 回答 1

3

您不能在 WPF 中为特定索引绑定创建通知,只能通知所有索引绑定:

RaisePropertyChanged(Binding.IndexerName);

应该与以下内容相同:

RaisePropertyChanged("Item[]");

您可以使用IndexerNameAttribute.

在 Silverlight 中,您实际上可以在括号内指定一个索引以仅影响该特定绑定。

于 2011-06-14T03:00:20.523 回答