public void AddChildren(CPerson p)
        {
            int x = p.X;

            foreach (CPerson c in p.GetChildren())
            {
                this.Add(c, x, p.Y + CGraphicObjectCommon.CellHeight);
                Show();
                x += c.Label.Width + 1;
            }
        }