ant-design-blazor/components/modal/core/DialogWrapper.razor
zxyao 4c93480036
feat(module: modal): add horizontal resizable (#3311)
* feat(module: modal): add resizable paramter

* fix: class and id in modal component usage
2023-08-20 01:10:48 +08:00

18 lines
403 B
C#

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