mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-05 21:47:38 +08:00
a53a8e24fc
* feat(module: tree-select): add CascadingTypeParameter * also for tree
24 lines
596 B
C#
24 lines
596 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;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
using Microsoft.AspNetCore.Components;
|
|
|
|
namespace AntDesign
|
|
{
|
|
#if NET6_0_OR_GREATER
|
|
[CascadingTypeParameter(nameof(TItem))]
|
|
#endif
|
|
public class DirectoryTree<TItem> : Tree<TItem>
|
|
{
|
|
public DirectoryTree()
|
|
{
|
|
base.BlockNode = true;
|
|
base.Directory = true;
|
|
}
|
|
}
|
|
}
|