**** Merged from MCS ****
[mono-project.git] / mcs / class / System.Windows.Forms / System.Windows.Forms / Binding.cs
blobde35b696999d41bd318ac88715affc28b86860cf
1 //
2 // System.Windows.Forms.Binding.cs
3 //
4 // Author:
5 // stubbed out by Jaak Simm (jaaksimm@firm.ee)
6 // Dennis hayes (dennish@raytek.com)
7 //
8 // (C) 2002/3 Ximian, Inc
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 namespace System.Windows.Forms {
33 public class Binding {
35 /// <summary>
36 /// Represents the simple binding between the property value of an object and the property value of a control.
37 ///
38 /// ToDo note:
39 /// - MarshalByRefObject members not stubbed out
40 /// </summary>
42 // --- Constructor
44 //Needed for CE
45 public Binding(string propertyName,object dataSource,string dataMember)
51 // --- Public Properties
54 //Most functions needed for compact frame work
56 //Needed for CE
57 [MonoTODO]
58 public BindingManagerBase BindingManagerBase {
60 get { throw new NotImplementedException (); }
62 //Needed for CE
63 [MonoTODO]
64 public BindingMemberInfo BindingMemberInfo {
66 get { throw new NotImplementedException (); }
69 [MonoTODO]
70 public Control Control {
72 get { throw new NotImplementedException (); }
75 [MonoTODO]
76 public object DataSource {
78 get { throw new NotImplementedException (); }
81 [MonoTODO]
82 public bool IsBinding {
84 get { throw new NotImplementedException (); }
87 [MonoTODO]
88 public string PropertyName {
90 get { throw new NotImplementedException (); }
94 // --- Public Methods
96 [MonoTODO]
97 protected virtual void OnFormat(ConvertEventArgs cevent)
99 throw new NotImplementedException ();
102 [MonoTODO]
103 protected virtual void OnParse(ConvertEventArgs cevent)
105 throw new NotImplementedException ();
109 // --- Public Events
111 [MonoTODO]
112 public event ConvertEventHandler Format {
114 add { throw new NotImplementedException (); }
115 remove { throw new NotImplementedException (); }
118 [MonoTODO]
119 public event ConvertEventHandler Parse {
121 add { throw new NotImplementedException (); }
122 remove { throw new NotImplementedException (); }