12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- //---------------------------------------------------------------------
- //
- // Copyright (c) Microsoft Corporation. All rights reserved.
- //
- //THIS CODE AND INFORMATION ARE PROVIDED AS IS WITHOUT WARRANTY OF ANY
- //KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
- //IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
- //PARTICULAR PURPOSE.
- //---------------------------------------------------------------------
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace AdvancedDataGridView
- {
- public class TreeGridNodeEventBase
- {
- private TreeGridNode _node;
- public TreeGridNodeEventBase(TreeGridNode node)
- {
- this._node = node;
- }
- public TreeGridNode Node
- {
- get { return _node; }
- }
- }
- public class CollapsingEventArgs : System.ComponentModel.CancelEventArgs
- {
- private TreeGridNode _node;
- private CollapsingEventArgs() { }
- public CollapsingEventArgs(TreeGridNode node)
- : base()
- {
- this._node = node;
- }
- public TreeGridNode Node
- {
- get { return _node; }
- }
- }
- public class CollapsedEventArgs : TreeGridNodeEventBase
- {
- public CollapsedEventArgs(TreeGridNode node)
- : base(node)
- {
- }
- }
- public class ExpandingEventArgs:System.ComponentModel.CancelEventArgs
- {
- private TreeGridNode _node;
- private ExpandingEventArgs() { }
- public ExpandingEventArgs(TreeGridNode node):base()
- {
- this._node = node;
- }
- public TreeGridNode Node
- {
- get { return _node; }
- }
- }
- public class ExpandedEventArgs : TreeGridNodeEventBase
- {
- public ExpandedEventArgs(TreeGridNode node):base(node)
- {
- }
- }
- public delegate void ExpandingEventHandler(object sender, ExpandingEventArgs e);
- public delegate void ExpandedEventHandler(object sender, ExpandedEventArgs e);
- public delegate void CollapsingEventHandler(object sender, CollapsingEventArgs e);
- public delegate void CollapsedEventHandler(object sender, CollapsedEventArgs e);
- }
|