// // System.Windows.Forms.BindingContext.cs // // Author: // stubbed out by Jaak Simm (jaaksimm@firm.ee) // Dennis hayes (dennish@raytek.com) // // (C) 2002/3 Ximian, Inc // using System.ComponentModel; namespace System.Windows.Forms { public class BindingContext { /// /// Manages the collection of BindingManagerBase objects for any object that inherits from the Control class. /// //private // --- Constructor [MonoTODO] public BindingContext () { // } // // --- Public Properties // Following properties not stubbed out, because they are only supporting internal .NET Framework infrastructure. [MonoTODO] public bool IsReadOnly { get { throw new NotImplementedException (); } } [MonoTODO] public BindingManagerBase this[object dataSource] { get { throw new NotImplementedException (); } } [MonoTODO] public BindingManagerBase this[object dataSource,string dataMember] { get { throw new NotImplementedException (); } } // // --- Methods // Following methods not stubbed out, because they are only supporting internal .NET Framework infrastructure. [MonoTODO] protected virtual void AddCore(object dataSource,BindingManagerBase listManager){ } [MonoTODO] protected virtual void ClearCore(){ } // - void ICollection.CopyTo(Array ar,int index) // - IEnumerator IEnumerable.GetEnumerator() [MonoTODO] protected virtual void OnCollectionChanged(CollectionChangeEventArgs ccevent){ } [MonoTODO] protected virtual void RemoveCore(object dataSource){ } [MonoTODO] protected internal void Add(object dataSource, BindingManagerBase listManager) { throw new NotImplementedException (); } [MonoTODO] protected internal void Clear() { //FIXME: } [MonoTODO] public bool Contains(object dataSource) { throw new NotImplementedException (); } [MonoTODO] public bool Contains(object dataSource,string dataMember) { throw new NotImplementedException (); } [MonoTODO] protected internal void Remove(object dataSource) { //FIXME: } // // --- Public Events // Following events not stubbed out, because they are only supporting internal .NET Framework infrastructure public event CollectionChangeEventHandler CollectionChanged; } }