mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-05 05:27:37 +08:00
e6076271c0
* feat(module: menu): add menuitem tooltip and submenu trigger type * add the doc
40 lines
1.1 KiB
C#
40 lines
1.1 KiB
C#
@namespace AntDesign
|
|
@inherits AntDomComponentBase
|
|
|
|
<CascadingValue Value="this" IsFixed>
|
|
<Tooltip Title="@content(this)" Placement="@PlacementType.Right" Disabled="TooltipDisabled">
|
|
<Unbound>
|
|
<li class="@ClassMapper.Class" role="menuitem" style=" @(PaddingLeft>0? $"padding-left:{PaddingLeft}px;":"") @Style" @onclick="HandleOnClick" @key="Key" @ref="context.Current">
|
|
@if (Icon != null)
|
|
{
|
|
<Icon Type="@Icon" />
|
|
}
|
|
|
|
@if (RouterLink == null)
|
|
{
|
|
@content(this)
|
|
}
|
|
else
|
|
{
|
|
<MenuLink Href="@RouterLink" Match="@RouterMatch">@content(this)</MenuLink>
|
|
}
|
|
</li>
|
|
</Unbound>
|
|
</Tooltip>
|
|
</CascadingValue>
|
|
|
|
@code {
|
|
RenderFragment<MenuItem> content = item =>@<Template>
|
|
<span>
|
|
@if (item.Title != null)
|
|
{
|
|
@item.Title
|
|
}
|
|
else
|
|
{
|
|
@item.ChildContent
|
|
}
|
|
</span>
|
|
</Template>;
|
|
}
|