mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-05 21:47:38 +08:00
15 lines
330 B
C#
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>
|
|
}
|