ToolEllipse.cs
上传用户:sxsgcs
上传日期:2013-10-21
资源大小:110k
文件大小:0k
源码类别:

CAD

开发平台:

C#

  1. using System;
  2. using System.Windows.Forms;
  3. namespace DrawTools
  4. {
  5. /// <summary>
  6. /// Ellipse tool
  7. /// </summary>
  8. class ToolEllipse : DrawTools.ToolRectangle
  9. {
  10. public ToolEllipse()
  11. {
  12.             Cursor = new Cursor(GetType(), "Ellipse.cur");
  13. }
  14.         public override void OnMouseDown(DrawArea drawArea, MouseEventArgs e)
  15.         {
  16.             AddNewObject(drawArea, new DrawEllipse(e.X, e.Y, 1, 1));
  17.         }
  18. }
  19. }