mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-15 17:31:42 +08:00
c3b0b114e6
* 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>
10 lines
183 B
C#
10 lines
183 B
C#
namespace AntDesign.Internal
|
|
{
|
|
public interface IFormItem
|
|
{
|
|
internal void AddControl<TValue>(AntInputComponentBase<TValue> control);
|
|
|
|
void Reset();
|
|
}
|
|
}
|