Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
01/11/10 03:55:51 (14 years ago)
Author:
swagner
Message:

Implemented INotifyPropertyChanged in all observable collections (#819)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Collections/3.3/IObservableDictionary.cs

    r2618 r2620  
    2424using System.Linq;
    2525using System.Text;
     26using System.ComponentModel;
    2627
    2728namespace HeuristicLab.Collections {
    28   public interface IObservableDictionary<TKey, TValue> : IDictionary<TKey, TValue> {
     29  public interface IObservableDictionary<TKey, TValue> : IDictionary<TKey, TValue>, INotifyPropertyChanged {
    2930    event CollectionItemsChangedEventHandler<KeyValuePair<TKey, TValue>> ItemsAdded;
    3031    event CollectionItemsChangedEventHandler<KeyValuePair<TKey, TValue>> ItemsRemoved;
Note: See TracChangeset for help on using the changeset viewer.