Library Blazor Components PopupMenuOption Reference PopupMenuOption ShortCut

ShortCut

Optional shortcut key to appear on the right side of menu option. Shortcuts are not automatically handled, but need to be handled by the developer.

razor
[Parameter]
public string? ShortCut { get; set; }

Example

razor
<PopupMenuOption Text="Add" ShortCut="⌘ + A" />

Sign in