Dialog
FlexCore's DialogControl provides modal overlays with header, body, close-on-escape, and configurable visibility.
Markup
<DialogControl @bind-Visible="_show" Header="Title" Width="480px"
IsModal="true" ShowCloseIcon="true" CloseOnEscape="true">
<p>Dialog body content…</p>
<ButtonControl CssClass="btn-primary" OnClick="@OnConfirm">OK</ButtonControl>
</DialogControl>