Cleanup codice parametri
This commit is contained in:
@@ -13,28 +13,6 @@
|
||||
<div class="px-1">
|
||||
<b>@SelectedParam</b>
|
||||
</div>
|
||||
@*<div class="px-1">
|
||||
<div class=" input-group input-group-sm">
|
||||
<button class="btn btn-primary" @onclick="() => toggleParam()">
|
||||
@if (showParam)
|
||||
{
|
||||
<i class="fa-solid fa-chevron-right"></i>
|
||||
}
|
||||
else
|
||||
{
|
||||
<i class="fa-solid fa-chevron-left"></i>
|
||||
}
|
||||
</button>
|
||||
@if (showParam)
|
||||
{
|
||||
|
||||
<span class="input-group-text small">Num Rec</span>
|
||||
<input class="form-control" @bind="@maxRecord" />
|
||||
<span class="input-group-text small">Sample Sec Time</span>
|
||||
<input class="form-control" @bind="@sampleSecMin" />
|
||||
}
|
||||
</div>
|
||||
</div>*@
|
||||
</div>
|
||||
<div class="d-flex">
|
||||
<div class="px-1 flex-fill">
|
||||
|
||||
@@ -7,14 +7,6 @@ namespace MP.MONO.UI.Components
|
||||
{
|
||||
public partial class ParamPlotRT
|
||||
{
|
||||
#region Private Fields
|
||||
|
||||
#if false
|
||||
private bool showParam = false;
|
||||
#endif
|
||||
|
||||
#endregion Private Fields
|
||||
|
||||
#region Protected Fields
|
||||
|
||||
protected DateTime lastRec = DateTime.Now.AddMinutes(-1);
|
||||
@@ -179,13 +171,6 @@ namespace MP.MONO.UI.Components
|
||||
});
|
||||
}
|
||||
|
||||
#if false
|
||||
private void toggleParam()
|
||||
{
|
||||
showParam = !showParam;
|
||||
}
|
||||
#endif
|
||||
|
||||
#endregion Private Methods
|
||||
|
||||
#region Protected Methods
|
||||
|
||||
Reference in New Issue
Block a user