| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- //
- // System.Windows.Forms.ControlBindingsCollection.cs
- //
- // Author:
- // stubbed out by Jaak Simm ([email protected])
- // Dennis Hayes ([email protected])
- //
- // (C) 2002 Ximian, Inc
- //
- using System.Collections;
- using System.ComponentModel;
- namespace System.Windows.Forms {
- /// <summary>
- /// Represents the collection of data bindings for a control.
- ///
- /// ToDo note:
- /// - no methods are implemented
- /// </summary>
-
- [MonoTODO]
- public class ControlBindingsCollection : BindingsCollection {
- #region Constructors
- protected internal ControlBindingsCollection() : base ()
- {
- }
- #endregion
-
-
- #region Properties
- [MonoTODO]
- public Control Control {
- get { throw new NotImplementedException (); }
- }
-
- [MonoTODO]
- public Binding this[string propertyName] {
- get { throw new NotImplementedException (); }
- }
- #endregion
-
-
-
-
- #region Methods
- /// following methods were not stubbed out, because they only support .NET framework:
- /// - protected override void AddCore(Binding dataBinding);
- /// - protected override void ClearCore();
- /// - protected override void RemoveCore(Binding dataBinding);
- [MonoTODO]
- public new void Add(Binding binding)
- {
- throw new NotImplementedException ();
- }
-
- [MonoTODO]
- public Binding Add(string propertyName,object dataSource,string dataMember)
- {
- throw new NotImplementedException ();
- }
-
- [MonoTODO]
- public new void Clear()
- {
- throw new NotImplementedException ();
- }
-
- [MonoTODO]
- public new void Remove(Binding binding)
- {
- throw new NotImplementedException ();
- }
-
- [MonoTODO]
- public new void RemoveAt(int index)
- {
- throw new NotImplementedException ();
- }
- #endregion
-
- }
- }
|