mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-16 01:41:14 +08:00
23 lines
637 B
C#
23 lines
637 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.ComponentModel;
|
|||
|
using System.Diagnostics;
|
|||
|
using System.Security.Cryptography;
|
|||
|
using System.Text;
|
|||
|
using Microsoft.AspNetCore.Components;
|
|||
|
using Microsoft.AspNetCore.Components.Rendering;
|
|||
|
using Microsoft.Extensions.DependencyInjection;
|
|||
|
|
|||
|
namespace AntDesign
|
|||
|
{
|
|||
|
public class TreeEventArgs : EventArgs
|
|||
|
{
|
|||
|
public TreeEventArgs() { }
|
|||
|
public TreeEventArgs(Tree tree) { Tree = tree; }
|
|||
|
public TreeEventArgs(Tree tree, TreeNode node) { Tree = tree; Node = node; }
|
|||
|
|
|||
|
public Tree Tree { get; set; }
|
|||
|
public TreeNode Node { get; set; }
|
|||
|
}
|
|||
|
}
|