- Fixed RadioButton display
[mono.git] / mcs / class / System.Windows.Forms / System.Windows.Forms / GridItemCollection.cs
1 //
2 // System.Windows.Forms.GridItemCollection.cs
3 //
4 // Author:
5 //   stubbed out by Daniel Carrera (dcarrera@math.toronto.edu)
6 //   Dennis Hayes (dennish@Raytek.com)
7 //
8 // (C) 2002/3 Ximian, Inc
9 //
10 using System.Collections;
11
12 namespace System.Windows.Forms {
13
14         // <summary>
15         // </summary>
16
17     public abstract class GridItemCollection : ICollection, IEnumerable {
18
19                 private GridItemCollection() {
20                         //just for signture compatablity
21                 }
22
23                 public static GridItemCollection Empty;
24
25                 //
26                 //  --- Public Properties
27                 //
28                 [MonoTODO]
29                 public virtual int Count {
30                         get {
31                                 throw new NotImplementedException ();
32                         }
33                 }
34                 [MonoTODO]
35                 public GridItem this[string str] {
36                         get {
37                                 throw new NotImplementedException ();
38                         }
39                 }
40
41                 //
42                 //  --- Public Methods
43                 //
44
45                 [MonoTODO]
46                 public IEnumerator GetEnumerator()
47                 {
48                         throw new NotImplementedException ();
49                 }
50                 /// <summary>
51                 /// ICollection Interface implmentation.
52                 /// </summary>
53                 int ICollection.Count{
54                         get{
55                                 throw new NotImplementedException ();
56                         }
57                 }
58                 bool ICollection.IsSynchronized{
59                         get{
60                                 throw new NotImplementedException ();
61                         }
62                 }
63                 object ICollection.SyncRoot{
64                         get{
65                                 throw new NotImplementedException ();
66                         }
67                 }
68                 void ICollection.CopyTo(Array array, int index){
69                         throw new NotImplementedException ();
70                 }
71                 // End Of ICollection
72         }
73 }