public virtual Screen GetScreen(string name) { Screen screen = _screenMap.Get(name); if (screen != null) { return(screen); } return(null); }
public LColor Find(string name) { if (StringUtils.IsEmpty(name)) { return(LColor.white.Cpy()); } if (dirty) { Init(); } LColor color = colorList.Get(name.Trim().ToLower()); if (color != null) { return(color.Cpy()); } return(LColor.white.Cpy()); }