IUIControl.5.Events.cs 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. using System;
  2. using System.Windows.Forms;
  3. namespace Microsoft.Windows.Forms
  4. {
  5. partial interface IUIControl
  6. {
  7. /// <summary>
  8. /// 父控件改变事件
  9. /// </summary>
  10. event EventHandler ParentChanged;
  11. /// <summary>
  12. /// 鼠标进入事件
  13. /// </summary>
  14. event EventHandler Enter;
  15. /// <summary>
  16. /// 鼠标离开事件
  17. /// </summary>
  18. event EventHandler Leave;
  19. /// <summary>
  20. /// 坐标改变事件
  21. /// </summary>
  22. event EventHandler LocationChanged;
  23. /// <summary>
  24. /// 大小改变事件
  25. /// </summary>
  26. event EventHandler SizeChanged;
  27. /// <summary>
  28. /// 鼠标按下事件
  29. /// </summary>
  30. event MouseEventHandler MouseDown;
  31. /// <summary>
  32. /// 鼠标弹起事件
  33. /// </summary>
  34. event MouseEventHandler MouseUp;
  35. /// <summary>
  36. /// 鼠标移动事件
  37. /// </summary>
  38. event MouseEventHandler MouseMove;
  39. /// <summary>
  40. /// 单击事件
  41. /// </summary>
  42. event EventHandler Click;
  43. /// <summary>
  44. /// 双击事件
  45. /// </summary>
  46. event EventHandler DoubleClick;
  47. /// <summary>
  48. /// 渲染事件
  49. /// </summary>
  50. event PaintEventHandler Paint;
  51. }
  52. }