mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-04 21:17:36 +08:00
0da743fab2
Co-authored-by: James Yeung <shunjiey@hotmail.com>
29 lines
849 B
C#
29 lines
849 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">
|
|
<ObjectGraphDataAnnotationsValidator />
|
|
<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> |