Ejemplo n.º 1
0
        /// <summary>
        /// Draws the cell.
        /// </summary>
        public virtual void Draw()
        {
            Debug.Assert(RegionHelper.IsFixed(ActualCellSize));

            DrawSelection();
            DrawBlockGeometry();

            foreach (ILayoutCellView CellView in CellViewList)
            {
                CellView.Draw();
            }
        }