mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-03 12:37:40 +08:00
29 lines
838 B
C#
29 lines
838 B
C#
@namespace AntDesign
|
|
@inherits AntDomComponentBase
|
|
@typeparam TModel
|
|
@using Microsoft.AspNetCore.Components.Forms;
|
|
@using AntDesign.Internal;
|
|
|
|
<Spin Spinning="Loading">
|
|
<EditForm class="@ClassMapper.Class"
|
|
style="@Style"
|
|
id="@Id"
|
|
EditContext="_editContext"
|
|
OnValidSubmit="OnFinish"
|
|
OnInvalidSubmit="OnFinishFailed">
|
|
<DataAnnotationsValidator />
|
|
<CascadingValue Value="this" Name="Form" TValue="IForm">
|
|
@if (!string.IsNullOrEmpty(Size))
|
|
{
|
|
<CascadingValue Value="Size" Name="FormSize">
|
|
@ChildContent(Model)
|
|
</CascadingValue>
|
|
}
|
|
else
|
|
{
|
|
@ChildContent(Model)
|
|
}
|
|
|
|
</CascadingValue>
|
|
</EditForm>
|
|
</Spin> |