MeasureItemEventHandler.cs 523 B

12345678910111213141516171819
  1. //
  2. // System.Windows.Forms.MeasureItemEventHandler.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 MeasureItem event of the
  13. /// ListBox, ComboBox, CheckedListBox, or MenuItem controls.
  14. /// </summary>
  15. //[Serializable]
  16. public delegate void MeasureItemEventHandler(object sender, MeasureItemEventArgs e);
  17. }