TreeGridEvents.cs 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. //---------------------------------------------------------------------
  2. //
  3. // Copyright (c) Microsoft Corporation. All rights reserved.
  4. //
  5. //THIS CODE AND INFORMATION ARE PROVIDED AS IS WITHOUT WARRANTY OF ANY
  6. //KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
  7. //IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
  8. //PARTICULAR PURPOSE.
  9. //---------------------------------------------------------------------
  10. using System;
  11. using System.Collections.Generic;
  12. using System.Text;
  13. namespace AdvancedDataGridView
  14. {
  15. public class TreeGridNodeEventBase
  16. {
  17. private TreeGridNode _node;
  18. public TreeGridNodeEventBase(TreeGridNode node)
  19. {
  20. this._node = node;
  21. }
  22. public TreeGridNode Node
  23. {
  24. get { return _node; }
  25. }
  26. }
  27. public class CollapsingEventArgs : System.ComponentModel.CancelEventArgs
  28. {
  29. private TreeGridNode _node;
  30. private CollapsingEventArgs() { }
  31. public CollapsingEventArgs(TreeGridNode node)
  32. : base()
  33. {
  34. this._node = node;
  35. }
  36. public TreeGridNode Node
  37. {
  38. get { return _node; }
  39. }
  40. }
  41. public class CollapsedEventArgs : TreeGridNodeEventBase
  42. {
  43. public CollapsedEventArgs(TreeGridNode node)
  44. : base(node)
  45. {
  46. }
  47. }
  48. public class ExpandingEventArgs:System.ComponentModel.CancelEventArgs
  49. {
  50. private TreeGridNode _node;
  51. private ExpandingEventArgs() { }
  52. public ExpandingEventArgs(TreeGridNode node):base()
  53. {
  54. this._node = node;
  55. }
  56. public TreeGridNode Node
  57. {
  58. get { return _node; }
  59. }
  60. }
  61. public class ExpandedEventArgs : TreeGridNodeEventBase
  62. {
  63. public ExpandedEventArgs(TreeGridNode node):base(node)
  64. {
  65. }
  66. }
  67. public delegate void ExpandingEventHandler(object sender, ExpandingEventArgs e);
  68. public delegate void ExpandedEventHandler(object sender, ExpandedEventArgs e);
  69. public delegate void CollapsingEventHandler(object sender, CollapsingEventArgs e);
  70. public delegate void CollapsedEventHandler(object sender, CollapsedEventArgs e);
  71. }