是否可以在自定义类中绑定 a Key
,就像使用 a 一样Dictionary
?
我可以Dictionary
使用此绑定绑定到 a:
"Binding MyDictionary[MyKey]"
但我不想使用这样Dictionary
的自定义类:
public class DataGridField : INotifyPropertyChanged
{
[Required]
[Key]
public string Key { get; set; }
private object value;
public object Value
{
get
{
return this.value;
}
set
{
this.value = value;
this.OnPropertyChanged("Value");
}
}
}
现在我想以ObservableCollection
与使用Dictionary
. 有没有办法做到这一点?