test altro metodo parse time mobile

This commit is contained in:
Samuele Locatelli
2024-02-27 19:35:33 +01:00
parent 2afc9acf2c
commit 1d208d37a2
2 changed files with 3 additions and 6 deletions
+1 -1
View File
@@ -18,7 +18,7 @@
{
<div class="input-group my-3">
<span class="input-group-text">@labelTempoIN</span>
<input type="time" class="form-control" @bind="@selTempoMS">
<input type="time" class="form-control" @bind="@selTempoMS" step="1">
</div>
}
</div>
+2 -5
View File
@@ -1,5 +1,7 @@
using global::Microsoft.AspNetCore.Components;
using MP.Data.Services;
using System.Globalization;
using System.Text.RegularExpressions;
namespace MP_TAB3.Components
{
@@ -83,11 +85,6 @@ namespace MP_TAB3.Components
/// </summary>
protected decimal _tempoMC { get; set; } = 0;
//protected timeMode modoTempo
//{
// get => ShowMS ? timeMode.MS : timeMode.MC;
//}
[Inject]
protected MessageService MsgServ { get; set; } = null!;