class ObservableCollection<T>

in global :: System . Collections . ObjectModel

Represents a dynamic data collection that provides notifications when items get added, removed, or when the whole list is refreshed.

  • T The type of elements in the collection.

public void Move( int oldIndex, int newIndex )

Moves the item at the specified index to a new location in the collection.

  • oldIndex The zero-based index specifying the location of the item to be moved.
  • newIndex The zero-based index specifying the new location of the item.

public ObservableCollection<T>( )

😔 No documentation found.

public int GetHashCode( )

😔 No documentation found.

public bool Equals( object obj )

😔 No documentation found.

public string ToString( )

😔 No documentation found.

public Type GetType( )

😔 No documentation found.

public void RemoveAt( int index )

😔 No documentation found.

public bool Remove( T item )

😔 No documentation found.

public void Insert( int index, T item )

😔 No documentation found.

public ObservableCollection<T>( IEnumerable<T> collection )

😔 No documentation found.

public ObservableCollection<T>( List<T> list )

😔 No documentation found.

public bool Contains( T item )

😔 No documentation found.

public void CopyTo( T[] array, int index )

😔 No documentation found.

public void Clear( )

😔 No documentation found.

public void Add( T item )

😔 No documentation found.

public T Item { get; set; }

😔 No documentation found.

public int Count { get; }

😔 No documentation found.

public void remove_CollectionChanged( NotifyCollectionChangedEventHandler value )

😔 No documentation found.

public void add_CollectionChanged( NotifyCollectionChangedEventHandler value )

😔 No documentation found.

public IEnumerator<T> GetEnumerator( )

😔 No documentation found.

public int IndexOf( T item )

😔 No documentation found.