ant-design-blazor/components/form/Internal/IFormItem.cs
笨木头 c3b0b114e6 feat: add form(basic features) (#168)
* feat: add form(not complete yet)

* feat: add form(basic)

* refactor: change namespace

* feat(module: form): add onFinish, onFinishFailed, reset

* feat(module: form): add layout demo

* feat(module: form): update doc

* refactor: basic form

Co-authored-by: ElderJames <shunjiey@hotmail.com>
2020-06-01 14:09:28 +08:00

10 lines
183 B
C#

namespace AntDesign.Internal
{
public interface IFormItem
{
internal void AddControl<TValue>(AntInputComponentBase<TValue> control);
void Reset();
}
}