Exemplo n.º 1
0
Arquivo: Cell.cs Projeto: iDeGra/iDraw
        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;
        }
Exemplo n.º 2
0
Arquivo: Cell.cs Projeto: iDeGra/iDraw
 public Cell(iCell parent, Point point) : base(parent, point)
 {
 }