Пример #1
0
        public iCell(iCell parent, Point point)
        {
            this.backColor = parent.backColor;
            this.frame     = parent.frame;
            int squareSize = parent.square.Width / parent.child.GetLength(1);

            this.square = new Rectangle(point, new Size(squareSize, squareSize));
            this.parent = parent;
        }
Пример #2
0
 public Cell(iCell parent, Point point) : base(parent, point)
 {
 }