ant-design-blazor/components/tree/DirectoryTree.cs
James Yeung a53a8e24fc
feat(module: tree-select): add CascadingTypeParameter (#3864)
* feat(module: tree-select): add CascadingTypeParameter

* also for tree
2024-05-15 00:39:30 +08:00

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;
}
}
}