QueryAccessibilityHelpEventHandler.cs 510 B

123456789101112131415161718
  1. //
  2. // System.Windows.Forms.QueryAccessibilityHelpEventHandler.cs
  3. //
  4. // Authors:
  5. // Jaak Simm ([email protected])
  6. // Dennis Hayes ([email protected])
  7. //
  8. // (C) 2002 Ximian, Inc. http://www.ximian.com
  9. //
  10. namespace System.Windows.Forms {
  11. /// <summary>
  12. /// Represents the method that will handle the QueryAccessibilityHelp event of a control.
  13. /// </summary>
  14. //[Serializable]
  15. public delegate void QueryAccessibilityHelpEventHandler(object sender, QueryAccessibilityHelpEventArgs e);
  16. }