Example #1
0
 public Element2D(int ID, Element2D parent)
     : base(ID, parent)
 {
     ChildList = new Element2DList(this);
     CenterHorizontallyInParent = false;
     CenterVerticallyInParent   = false;
     this.parent          = parent;
     _bActive             = false;
     wraponnegativeX      = true;
     wraponnegativeY      = true;
     location.x           = 0;
     location.y           = 0;
     size.width           = 0;
     size.height          = 0;
     __MinWidth           = 0;
     __MinHeight          = 0;
     __MaxWidth           = 0;
     __MaxHeight          = 0;
     auto_center_x_offset = 0;
     auto_center_y_offset = 0;
     IgnoreMouse          = false;
     hasfocus             = false;
     relativeposition     = false;
     dropdownelement      = null;
 }
Example #2
0
 public ReversedElement2DList(Element2DList sourceList)
 {
     m_olsourceList = sourceList;
 }