MainForm.CreatePath C# (CSharp) Method

CreatePath() private method

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