ToolInclusionNoEffect.cs 862 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using System.Windows.Forms;
  7. namespace PaintDotNet.Annotation.DedicatedAnalysis
  8. {
  9. public class ToolInclusionNoEffect : ToolObject
  10. {
  11. public static void OnMouseDown(ISurfaceBox surfacebox, MouseEventArgs e)
  12. {
  13. }
  14. public static void OnMouseMove(ISurfaceBox surfacebox, MouseEventArgs e)
  15. {
  16. }
  17. public static void OnMouseUp(ISurfaceBox surfacebox, MouseEventArgs e)
  18. {
  19. }
  20. public static void OnMouseLeftDoubleClick(ISurfaceBox surfacebox, MouseEventArgs e)
  21. {
  22. }
  23. public static void OnMouseClick(ISurfaceBox surfacebox, MouseEventArgs e)
  24. {
  25. }
  26. public static void beginWithNewObject()
  27. {
  28. }
  29. }
  30. }