(DISTFILES): Comment out a few missing files.
[mono-project.git] / mcs / class / System.Windows.Forms / System.Windows.Forms / PropertyManager.cs
blobb68c621903411592aacb216460dc0a95fa872ce9
1 //
2 // System.Windows.Forms.PropertyManager
3 //
4 // Author:
5 // stubbed out by Jaak Simm (jaaksimm@firm.ee)
6 // Dennis Hayes (dennish@Raytek.com)
7 //
8 // (C) Ximian, Inc., 2002
9 //
12 // Permission is hereby granted, free of charge, to any person obtaining
13 // a copy of this software and associated documentation files (the
14 // "Software"), to deal in the Software without restriction, including
15 // without limitation the rights to use, copy, modify, merge, publish,
16 // distribute, sublicense, and/or sell copies of the Software, and to
17 // permit persons to whom the Software is furnished to do so, subject to
18 // the following conditions:
19 //
20 // The above copyright notice and this permission notice shall be
21 // included in all copies or substantial portions of the Software.
22 //
23 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
24 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
25 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
26 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
27 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
28 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
29 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
32 //using System.Drawing;
33 //using System.Drawing.Printing;
34 using System.ComponentModel;
35 using System.Collections;
36 //using System.Windows.Forms.Design;
38 namespace System.Windows.Forms {
40 /// <summary>
41 /// Maintains a Binding between an object's property and a data-bound control property.
42 /// </summary>
44 [MonoTODO]
45 public class PropertyManager : BindingManagerBase {
48 #region Fields
49 #endregion
52 #region Constructor
53 [MonoTODO]
54 public PropertyManager()
58 #endregion
60 #region Properties
61 [MonoTODO]
62 public override int Count {
63 get {
64 throw new NotImplementedException ();
68 [MonoTODO]
69 public override object Current {
70 get {
71 throw new NotImplementedException ();
75 [MonoTODO]
76 public override int Position {
77 get {
78 throw new NotImplementedException ();
80 set {
81 //FIXME:
84 #endregion
86 #region Methods
87 [MonoTODO]
88 public override void AddNew()
90 //FIXME:
93 [MonoTODO]
94 public override void CancelCurrentEdit()
96 //FIXME:
99 [MonoTODO]
100 public override void EndCurrentEdit()
102 //FIXME:
105 [MonoTODO]
106 public override PropertyDescriptorCollection GetItemProperties()
108 throw new NotImplementedException ();
111 [MonoTODO]
112 protected internal override string GetListName(ArrayList listAccessors)
114 throw new NotImplementedException ();
117 [MonoTODO]
118 protected internal override void OnCurrentChanged(EventArgs ea)
120 //FIXME:
123 [MonoTODO]
124 public override void RemoveAt(int index)
126 //FIXME:
129 [MonoTODO]
130 public override void ResumeBinding()
132 //FIXME:
135 [MonoTODO]
136 public override void SuspendBinding()
138 //FIXME:
141 [MonoTODO]
142 protected override void UpdateIsBinding()
144 //FIXME:
146 #endregion