| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100 |
- //
- // System.Windows.Forms.GridItem.cs
- //
- // Author:
- // stubbed out by Daniel Carrera ([email protected])
- // Partially completed by Dennis Hayes ([email protected])
- //
- // (C) 2002 Ximian, Inc
- //
- namespace System.Windows.Forms {
- // <summary>
- // This is only a template. Nothing is implemented yet.
- //
- // </summary>
- public abstract class GridItem {
- bool expandable;
- bool expanded;
- //
- // --- Public Properties
- //
- public bool Expandable {
- get {
- return expandable;
- }
- }
- public bool Expanded {
- get {
- return expanded;
- }
- set {
- expanded = value;
- }
- }
- //[MonoTODO]
- //public abstract GridItemCollection GridItems {
- // get {
- // throw new NotImplementedException ();
- // }
- //}
- //[MonoTODO]
- //public abstract GridItemType GridItemType {
- // get {
- // throw new NotImplementedException ();
- // }
- //}
- //[MonoTODO]
- //public abstract string Label {
- // get {
- // throw new NotImplementedException ();
- // }
- //}
- //[MonoTODO]
- //public abstract GridItem Parent {
- // get {
- // throw new NotImplementedException ();
- // }
- //}
- //[MonoTODO]
- //public abstract PropertyDescriptor PropertyDescriptor {
- // get {
- // throw new NotImplementedException ();
- // }
- //}
- //[MonoTODO]
- //public abstract object Value {
- // get {
- // throw new NotImplementedException ();
- // }
- //}
- //
- // --- Public Properties
- //
- [MonoTODO]
- public override bool Equals(object o)
- {
- throw new NotImplementedException ();
- }
- //public static bool Equals(object o1, object o2)
- //{
- // throw new NotImplementedException ();
- //}
- [MonoTODO]
- public override int GetHashCode() {
- //FIXME add our proprities
- return base.GetHashCode();
- }
- //
- // --- Protected Constructor
- //
- [MonoTODO]
- protected GridItem()
- {
- throw new NotImplementedException ();
- }
- }
- }
|