DotNet 4.8.1 build of DotNetBar

This commit is contained in:
2025-02-07 10:35:23 -05:00
parent 33439b63a0
commit 6b0a5d60f4
2609 changed files with 989814 additions and 7 deletions

View File

@@ -0,0 +1,28 @@
using System;
namespace DevComponents.AdvTree
{
/// <summary>
/// Represents event arguments for NodeCollection based events, like BeforeNodeInsert, AfterNodeInsert etc.
/// </summary>
public class TreeNodeCollectionEventArgs : AdvTreeNodeEventArgs
{
/// <summary>
/// Creates new instance of the class.
/// </summary>
/// <param name="action">Source action</param>
/// <param name="node">Affected node</param>
/// <param name="parentNode">Parent of the node if any</param>
public TreeNodeCollectionEventArgs(eTreeAction action, Node node, Node parentNode):base(action, node)
{
this.ParentNode = parentNode;
}
/// <summary>
/// Indicates parent node of the affected node. For example if event handled is BeforeNodeInsert parent of the Node is has
/// not been set yet so this property provides information on the node that will become parent. If this property returns null
/// then node is being added or removed from the main AdvTree.Nodes collection.
/// </summary>
public DevComponents.AdvTree.Node ParentNode=null;
}
}