ant-design-blazor/components/form/Internal/IFormItem.cs

13 lines
359 B
C#
Raw Normal View History

using System.ComponentModel.DataAnnotations;
using Microsoft.AspNetCore.Components.Forms;
namespace AntDesign.Internal
{
public interface IFormItem
{
internal void AddControl<TValue>(AntInputComponentBase<TValue> control);
internal ValidationResult[] ValidateField();
internal FieldIdentifier GetFieldIdentifier();
}
}