(DISTFILES): Comment out a few missing files.
[mono-project.git] / mcs / class / System.Windows.Forms / Gtk / ControlBindingsCollection.cs
blob126318e1ea5c5887d025f1e3ac918b7b22d83bf7
1 //
2 // System.Windows.Forms.ControlBindingsCollection.cs
3 //
4 // Author:
5 // stubbed out by Jaak Simm (jaaksimm@firm.ee)
6 // Dennis Hayes (dennish@Raytek.com)
7 //
8 // (C) 2002 Ximian, Inc
9 //
11 using System.Collections;
12 using System.ComponentModel;
14 namespace System.Windows.Forms {
16 /// <summary>
17 /// Represents the collection of data bindings for a control.
18 /// </summary>
20 [MonoTODO]
21 public class ControlBindingsCollection : BindingsCollection {
23 #region Constructors
24 protected internal ControlBindingsCollection() : base ()
27 #endregion
29 #region Properties
30 [MonoTODO]
31 public Control Control {
32 get { throw new NotImplementedException (); }
35 [MonoTODO]
36 public Binding this[string propertyName] {
37 get { throw new NotImplementedException (); }
39 #endregion
41 #region Methods
42 public new void Add(Binding binding)
44 throw new NotImplementedException ();
47 [MonoTODO]
48 public Binding Add(string propertyName,object dataSource,string dataMember)
50 throw new NotImplementedException ();
53 [MonoTODO]
54 public new void Clear()
56 //FIXME:
59 [MonoTODO]
60 public new void Remove(Binding binding)
62 //FIXME:
65 [MonoTODO]
66 public new void RemoveAt(int index)
68 //FIXME:
71 //internal
72 [MonoTODO]
73 protected override void AddCore(Binding dataBinding) {
76 [MonoTODO]
77 protected override void ClearCore(){
80 [MonoTODO]
81 protected override void RemoveCore(Binding dataBinding){
84 #endregion