/// <summary> /// Add a groupable element to a group /// </summary> /// <param name="ID"></param> /// <param name="Element"></param> /// <returns></returns> public Group AddToGroup(string ID, GroupableBase Element) { Group group = this.GetGroupFromID(ID); group.Add(Element); return(group); }
public GroupableBase(GroupableBase Parent) { this._purgeinactive = Parent.PurgeInactive; }
//method public void Add(GroupableBase GroupableElement) { this._groupables.Add(GroupableElement); this.StateEvent += GroupableElement.OnGroupStateChange; }