PropertyValueChangedEventHandler.cs 514 B

12345678910111213141516171819
  1. //
  2. // System.Windows.Forms.PropertyValueChangedEventHandler.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. /// The event handler class that is invoked when
  13. /// a property in the grid is modified by the user.
  14. /// </summary>
  15. //[Serializable]
  16. public delegate void PropertyValueChangedEventHandler(object s, PropertyValueChangedEventArgs e);
  17. }