public LocationSideConfig(LocationSide side, ILocationManagerConfig managerConfig, IDesignConfig designConfig) { Side = side; ManagerConfig = managerConfig; DesignConfig = designConfig; CleanPositions(managerConfig); }
public LocationContainers(UserControl panel, LocationSide side, int position) { this.Panel = panel; this.LocationSide = side; this.Position = position; }
public LocationManager AddPanel(UserControl control, LocationSide side, int position) { Containers[side].Add(new LocationContainers(control, side, position)); return(this); }