mirror of
https://github.com/radzenhq/radzen-blazor.git
synced 2026-07-08 18:16:08 +00:00
14 lines
496 B
Plaintext
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>
|
|
} |