mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-15 09:21:24 +08:00
22 lines
557 B
C#
22 lines
557 B
C#
|
// Licensed to the .NET Foundation under one or more agreements.
|
|||
|
// The .NET Foundation licenses this file to you under the MIT license.
|
|||
|
// See the LICENSE file in the project root for more information.
|
|||
|
|
|||
|
using System;
|
|||
|
|
|||
|
namespace AntDesign
|
|||
|
{
|
|||
|
public interface IRendered<TItem>
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// 渲染完成后
|
|||
|
/// </summary>
|
|||
|
Action OnRendered { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 新节点数据,用于展开并选择新节点
|
|||
|
/// </summary>
|
|||
|
TItem NewChildData { get; set; }
|
|||
|
}
|
|||
|
}
|