MainForm.cs 1.65 KB
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;

namespace flowchart
{
    public partial class MainForm : Form
    {
        public MainForm()
        {
            InitializeComponent();
        }

        private void btn_default_Click_1(object sender, EventArgs e)
        {
            // 초기상태
            CustomPanel.State = "NONE";
            CustomPanel.FigName = "NONE";
            CustomPanel.Cursor = Cursors.Default;
        }

        private void btn_rectangle_Click_1(object sender, EventArgs e)
        {
            CustomPanel.State = "DRAW";         // 도형을 그리겠다고 선택
            CustomPanel.FigName = "RECTANGLE";  // 사각형을 선택
            CustomPanel.Cursor = Cursors.Hand;
        }



        private void btn_rhombus_Click_1(object sender, EventArgs e)
        {
            CustomPanel.State = "DRAW";
            CustomPanel.FigName = "RHOMBUS";    // 마름모를 선택
            CustomPanel.Cursor = Cursors.Hand;
        }

        private void btn_parallelogram_Click(object sender, EventArgs e)
        {
            CustomPanel.State = "DRAW";         
            CustomPanel.FigName = "PARALLELOGRAM";  // 사각형을 선택
            CustomPanel.Cursor = Cursors.Hand;
        }

        private void btn_linkline_Click(object sender, EventArgs e)
        {
            CustomPanel.State = "DRAW";
            CustomPanel.FigName = "LINKLINE";   // 링크 라인을 선택
            // CustomPanel.Cursor = Cursors.Hand;
        }
    }
}