DotNet 4.8.1 build of DotNetBar
This commit is contained in:
31
PROMS/DotNetBar Source Code/TreeGX/TreeGXNodeEventArgs.cs
Normal file
31
PROMS/DotNetBar Source Code/TreeGX/TreeGXNodeEventArgs.cs
Normal file
@@ -0,0 +1,31 @@
|
||||
using System;
|
||||
|
||||
namespace DevComponents.Tree
|
||||
{
|
||||
/// <summary>
|
||||
/// Provides data for TreeGX Node events.
|
||||
/// </summary>
|
||||
public class TreeGXNodeEventArgs:EventArgs
|
||||
{
|
||||
/// <summary>
|
||||
/// Default constructor.
|
||||
/// </summary>
|
||||
/// <param name="action">Default action</param>
|
||||
/// <param name="node">Default node.</param>
|
||||
public TreeGXNodeEventArgs(eTreeAction action, Node node)
|
||||
{
|
||||
this.Action = action;
|
||||
this.Node = node;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Indicates the type of the action performed on a node.
|
||||
/// </summary>
|
||||
public eTreeAction Action=eTreeAction.Code;
|
||||
|
||||
/// <summary>
|
||||
/// Indicates the node that action is peformed on.
|
||||
/// </summary>
|
||||
public DevComponents.Tree.Node Node=null;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user