MainForm.CreatePath C# (CSharp) 메소드

CreatePath() 개인적인 메소드

private CreatePath ( ) : GraphicsPath
리턴 GraphicsPath
	GraphicsPath CreatePath ()
	{
		GraphicsPath path = new GraphicsPath ();
		path.AddEllipse (new Rectangle (20, 20, 100, 100));
		return path;
	}
MainForm