mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-14 00:41:30 +08:00
19 lines
456 B
C#
19 lines
456 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using Microsoft.AspNetCore.Components;
|
|
using Microsoft.AspNetCore.Components.Web;
|
|
|
|
namespace AntDesign.Internal
|
|
{
|
|
public partial class SubMenuTrigger : OverlayTrigger
|
|
{
|
|
[CascadingParameter(Name = "SubMenu")]
|
|
public SubMenu SubMenuComponent { get; set; }
|
|
|
|
[Parameter]
|
|
public string TriggerClass { get; set; }
|
|
}
|
|
}
|