ant-design-blazor/components/modal/core/DialogWrapper.razor

15 lines
330 B
C#

@namespace AntDesign
@inherits AntDomComponentBase
@if (_hasAdd)
{
<CascadingValue Value="@this.Id" Name="DialogWrapperId">
<Dialog @ref="_dialog"
Config="Config"
Visible="@Visible"
Style="@Style">
@ChildContent
</Dialog>
</CascadingValue>
}