public ExpandItem(string name, Image image, SYS_FUN_POINT funPoint, Type controlType = null) { this.name = name; this.image = image; this.funPoint = funPoint; this.controlType = controlType; }
public bool HasPrivate(SYS_FUN_POINT funPoint) { if (DesignMode) { return(true); } return(PrivateMgr.FUN_POINTS.Contains(funPoint)); }
public static bool HasPrivate(SYS_FUN_POINT fun) { if (IsManager) { return(true); } else { return(PrivateMgr.FUN_POINTS.Contains(fun)); } }