using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace doBezier
{
public partial class Form1 : Form
{
PointF[] p = new PointF[100]; //存储控制点坐标
int count; //记录已输入的控制点个数
Graphics g; //GDI 对象
public Form1()
{
InitializeComponent();
g = CreateGraphics();
count = 0;
}