Files
radzen-blazor/Radzen.Blazor/RadzenPanelMenu.razor
2026-03-04 15:20:37 +02:00

14 lines
496 B
Plaintext

@inherits RadzenComponentWithChildren
@if (Visible)
{
<ul @ref=@Element style=@Style @attributes=@Attributes class=@GetCssClass() id=@GetId()
role="menu" aria-label="@AriaLabel" tabindex="0"
@onkeydown=@OnKeyPress
@onkeydown:preventDefault=preventKeyPress @onkeydown:stopPropagation="stopKeydownPropagation"
@onfocus=@this.AsNonRenderingEventHandler(OnFocus)>
<CascadingValue Value=this>
@ChildContent
</CascadingValue>
</ul>
}