FigStart.cs 825 Bytes
using System;
using System.Collections.Generic;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace flowchart
{
    // 프로세스 원을 그리는 클래스(FigureBase를 상속)
    // Draw 함수에서 원을 그린다.
    class FigStart : FigBase
    {
        // 생성자도 상속해서 사용.
        public FigStart(Point location, Size size) : base(location, size)
        {

        }

        public override void Draw(Graphics g)
        {
            using (Pen pen = new Pen(Color.Red, 1))
            {
                System.Drawing.Rectangle rect = new System.Drawing.Rectangle(this.Location, this.Size);
                g.DrawEllipse(pen, rect);  // 원을 그리는 함수
                

            }

            base.Draw(g);
        }
    }
}