| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- //
- // System.Windows.Forms.AccessibleEvents.cs
- //
- // Author:
- // Dennis Hayes ([email protected])
- // (C) 2002 Ximian = , Inc. http://www.ximian.com
- //
- using System;
- namespace System.Windows.Forms {
- /// <summary>
- /// </summary>
- public enum AccessibleEvents{
- AcceleratorChange = 32786,
- Create = 32768,
- DefaultActionChange = 32765,
- DescriptionChange = 32781,
- Destroy = 32769,
- Focus = 32773,
- HelpChange = 32784,
- Hide = 32771,
- LocationChange = 32779,
- NameChange = 32780,
- ParentChange = 32783,
- Reorder = 32772,
- Selection = 32774,
- SelectionAdd = 32775,
- SelectionRemove = 32776,
- SelectionWithin = 32777,
- Show = 32770,
- StateChange = 32778,
- SystemAlert = 2,
- SystemCaptureEnd = 9,
- SystemCaptureStart = 8,
- SystemContextHelpEnd = 13,
- SystemContextHelpStart = 12,
- SystemDialogEnd = 17,
- SystemDialogStart = 16,
- SystemDragDropEnd = 15,
- SystemDragDropStart = 14,
- SystemForeground = 3,
- SystemMenuEnd = 5,
- SystemMenuPopupEnd = 7,
- SystemMenuPopupStart = 6,
- SystemMenuStart = 4,
- SystemMinimizeEnd = 23,
- SystemMinimizeStart = 22,
- SystemMoveSizeEnd = 11,
- SystemMoveSizeStart = 10,
- SystemScrollingEnd = 19,
- SystemScrollingStart = 18,
- SystemSound = 1,
- SystemSwitchEnd = 21,
- SystemSwitchStart = 20,
- ValueChange = 32782
- }
- }
|