2020-05-29 00:33:49 +08:00
|
|
|
@namespace AntDesign
|
2020-03-26 10:45:35 +08:00
|
|
|
@inherits AntInputComponentBase<double>
|
2020-04-23 17:13:56 +08:00
|
|
|
|
|
|
|
<div class="@ClassMapper.Class" style="@Style" id="@Id">
|
2020-03-26 10:45:35 +08:00
|
|
|
<div class="ant-input-number-handler-wrap">
|
2020-06-07 19:41:00 +08:00
|
|
|
<Icon class="@GetIconClass("up")" Type="up" OnClick="Increase" />
|
|
|
|
<Icon class="@GetIconClass("down")" Type="down" OnClick="Decrease" />
|
2020-03-26 10:45:35 +08:00
|
|
|
</div>
|
|
|
|
<div class="ant-input-number-input-wrap">
|
2020-06-04 12:02:19 +08:00
|
|
|
<Input class="ant-input-number-input" @bind-Value="@CurrentValueAsString" Type="number" OnInput="(e)=>OnInput(e)" />
|
2020-03-26 10:45:35 +08:00
|
|
|
</div>
|
2020-04-23 17:13:56 +08:00
|
|
|
</div>
|