return
Parent.ScreenCoordinates(r) + Parent.getSlot().Position + Parent.ClientRectangle.Position;
}
- public virtual Rectangle getSlot() => Slot;
+ public virtual Rectangle getSlot () { return Slot;}
#endregion
#region EVENT HANDLERS
}
public void RegisterForLayouting (LayoutingType layoutType) { throw new NotImplementedException (); }
public bool UpdateLayout (LayoutingType layoutType) { throw new NotImplementedException (); }
- public Rectangle ContextCoordinates (Rectangle r) => r;
- public Rectangle ScreenCoordinates (Rectangle r) => r;
+ public Rectangle ContextCoordinates (Rectangle r) { return r;}
+ public Rectangle ScreenCoordinates (Rectangle r) { return r; }
public ILayoutable Parent {
get { return null; }
public Interface HostContainer {
get { return this; }
}
- public Rectangle getSlot () => ClientRectangle;
+ public Rectangle getSlot () { return ClientRectangle; }
#endregion
}
}