ant-design-blazor/components/input/TextArea.razor
liuhai f914e6c4b3 feat: add auto-complete component (#251)
Co-authored-by: ElderJames <shunjiey@hotmail.com>
2020-06-27 18:24:21 +08:00

14 lines
535 B
C#

@namespace AntDesign
@inherits Input<string>
<!--TODO: minheight, maxheight, onResize-->
<textarea class="@ClassMapper.Class" style="@Style" @attributes="Attributes" id="@Id" placeholder="@Placeholder" value="@CurrentValueAsString"
@ref="Ref"
@oninput="OnInputAsync"
@onkeypress="OnPressEnterAsync" />
@if (AutoSize)
{
<textarea class="@ClassMapper.Class" style="position:absolute;z-index:-1; visibility: hidden;height: 0px;overflow-y:hidden; @_hiddenWidth" @ref="_hiddenEle">@Value</textarea>
}