NodeLabelEditEventHandler.cs 513 B

12345678910111213141516171819
  1. //
  2. // System.Windows.Forms.NodeLabelEditEventHandler.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 BeforeLabelEdit
  13. /// and AfterLabelEdit events of a TreeView control.
  14. /// </summary>
  15. //[Serializable]
  16. public delegate void NodeLabelEditEventHandler(object sender, NodeLabelEditEventArgs e);
  17. }