Exemple #1
0
 protected internal DataPropertyDictionaryChangedEventArgs(IDataPropertyDictionary dataProperty, IEnumerable <IReadOnlyDataPropertyDictionaryChangeOperation <TKey, TValue> > operations, IEnumerable <IReadOnlyDataPropertyDictionaryChangeOperation <TKey, TValue> > inputOperations)
     : base(dataProperty)
 {
     Operations      = new List <IReadOnlyDataPropertyDictionaryChangeOperation <TKey, TValue> >(operations);
     InputOperations = new List <IReadOnlyDataPropertyDictionaryChangeOperation <TKey, TValue> >(inputOperations);
 }
Exemple #2
0
 protected DataPropertyDictionaryChangingEventArgs(IDataPropertyDictionary dataProperty)
     : base(dataProperty)
 {
 }
Exemple #3
0
 protected internal DataPropertyDictionaryChangingEventArgs(IDataPropertyDictionary dataProperty, DataPropertyDictionaryChangeOperation <TKey, TValue> operation)
     : this(dataProperty, operation.Enumerate())
 {
 }