AccessibleEvents.cs 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. //
  2. // System.Windows.Forms.AccessibleEvents.cs
  3. //
  4. // Author:
  5. // Dennis Hayes ([email protected])
  6. // (C) 2002 Ximian = , Inc. http://www.ximian.com
  7. //
  8. using System;
  9. namespace System.Windows.Forms {
  10. /// <summary>
  11. /// </summary>
  12. public enum AccessibleEvents{
  13. AcceleratorChange = 32786,
  14. Create = 32768,
  15. DefaultActionChange = 32765,
  16. DescriptionChange = 32781,
  17. Destroy = 32769,
  18. Focus = 32773,
  19. HelpChange = 32784,
  20. Hide = 32771,
  21. LocationChange = 32779,
  22. NameChange = 32780,
  23. ParentChange = 32783,
  24. Reorder = 32772,
  25. Selection = 32774,
  26. SelectionAdd = 32775,
  27. SelectionRemove = 32776,
  28. SelectionWithin = 32777,
  29. Show = 32770,
  30. StateChange = 32778,
  31. SystemAlert = 2,
  32. SystemCaptureEnd = 9,
  33. SystemCaptureStart = 8,
  34. SystemContextHelpEnd = 13,
  35. SystemContextHelpStart = 12,
  36. SystemDialogEnd = 17,
  37. SystemDialogStart = 16,
  38. SystemDragDropEnd = 15,
  39. SystemDragDropStart = 14,
  40. SystemForeground = 3,
  41. SystemMenuEnd = 5,
  42. SystemMenuPopupEnd = 7,
  43. SystemMenuPopupStart = 6,
  44. SystemMenuStart = 4,
  45. SystemMinimizeEnd = 23,
  46. SystemMinimizeStart = 22,
  47. SystemMoveSizeEnd = 11,
  48. SystemMoveSizeStart = 10,
  49. SystemScrollingEnd = 19,
  50. SystemScrollingStart = 18,
  51. SystemSound = 1,
  52. SystemSwitchEnd = 21,
  53. SystemSwitchStart = 20,
  54. ValueChange = 32782
  55. }
  56. }