そのような数値テキストボックスがあります
<telerik:radnumerictextbox showspinbuttons="true" incrementsettings-interceptarrowkeys="true" incrementsettings-interceptmousewheel="true" labelwidth="120px" runat="server" id="ddStartHour" width="100px" MaxLength="2" MaxValue="12" Value="0" MinValue="0" CssClass="app-input" DataType="System.Integer" >
<NumberFormat DecimalDigits="0" />
</telerik:radnumerictextbox>
これで、私の数値は 0,1,2,3,4,5,6,7,8,9,10,11,12 になります。
しかし、10未満の数字の前にゼロを追加したいので、00,01,02,03,04,05,06,07,08,09,10,11,12のような数字を表示したいと思います.
どうやってやるの?
THX。