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