minor update grafico :

- standardizzare testate
This commit is contained in:
Samuele Locatelli
2022-09-29 11:29:39 +02:00
parent 5f7d2ab1ae
commit a988fd00ea
14 changed files with 40 additions and 24 deletions
+1 -1
View File
@@ -6,7 +6,7 @@
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<Platforms>AnyCPU;x86;x64</Platforms>
<Version>1.2.2209.2910</Version>
<Version>1.2.2209.2911</Version>
</PropertyGroup>
<ItemGroup>
+1 -1
View File
@@ -1,6 +1,6 @@
<body>
<i>MAPO-MONO</i>
<h4>Version: 1.2.2209.2910</h4>
<h4>Version: 1.2.2209.2911</h4>
<br /> Release Note:
<ul>
<li>
+1 -1
View File
@@ -1 +1 @@
1.2.2209.2910
1.2.2209.2911
+1 -1
View File
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<item>
<version>1.2.2209.2910</version>
<version>1.2.2209.2911</version>
<url>http://nexus.steamware.net/repository/SWS/MP.MONO.ANALYZER/stable/LAST/MP.Mon.zip</url>
<changelog>http://nexus.steamware.net/repository/SWS/MP.MONO.ANALYZER/stable/LAST/ChangeLog.html</changelog>
<mandatory>false</mandatory>
+1 -1
View File
@@ -6,7 +6,7 @@
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<Platforms>AnyCPU;x86;x64</Platforms>
<Version>1.2.2209.2910</Version>
<Version>1.2.2209.2911</Version>
</PropertyGroup>
<ItemGroup>
+1 -1
View File
@@ -1,6 +1,6 @@
<body>
<i>MAPO-MONO</i>
<h4>Version: 1.2.2209.2910</h4>
<h4>Version: 1.2.2209.2911</h4>
<br /> Release Note:
<ul>
<li>
+1 -1
View File
@@ -1 +1 @@
1.2.2209.2910
1.2.2209.2911
+1 -1
View File
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<item>
<version>1.2.2209.2910</version>
<version>1.2.2209.2911</version>
<url>http://nexus.steamware.net/repository/SWS/MP.MONO.DECODER/stable/LAST/MP.Mon.zip</url>
<changelog>http://nexus.steamware.net/repository/SWS/MP.MONO.DECODER/stable/LAST/ChangeLog.html</changelog>
<mandatory>false</mandatory>
+1 -1
View File
@@ -6,7 +6,7 @@
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<Platforms>AnyCPU;x86;x64</Platforms>
<Version>1.2.2209.2910</Version>
<Version>1.2.2209.2911</Version>
</PropertyGroup>
<ItemGroup>
+1 -1
View File
@@ -1,6 +1,6 @@
<body>
<i>MAPO-MONO</i>
<h4>Version: 1.2.2209.2910</h4>
<h4>Version: 1.2.2209.2911</h4>
<br /> Release Note:
<ul>
<li>
+1 -1
View File
@@ -1 +1 @@
1.2.2209.2910
1.2.2209.2911
+1 -1
View File
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<item>
<version>1.2.2209.2910</version>
<version>1.2.2209.2911</version>
<url>http://nexus.steamware.net/repository/SWS/MP.MONO.SIM/stable/LAST/MP.Mon.zip</url>
<changelog>http://nexus.steamware.net/repository/SWS/MP.MONO.SIM/stable/LAST/ChangeLog.html</changelog>
<mandatory>false</mandatory>
+21 -12
View File
@@ -16,17 +16,26 @@
<div class="col-12 col-md-6 col-lg-9 float-end">
<div class="d-flex flex-row-reverse">
<div class="p-2">
<div class="form-group mb-0">
<button id="btnReset" class="btn btn-primary btn-sm btn-block" @onclick="() => ReloadData(true)" title="Reset Filter"><span class="oi oi-loop-circular"></span></button>
</div>
</div>
<div class="p-2">
<div class="input-group input-group-sm">
<div class="input-group-prepend">
<span class="input-group-text">Last Records:</span>
@if (showParams)
{
<div class="input-group input-group-sm">
<div class="input-group-prepend">
<span class="input-group-text py-1">Last Records:</span>
</div>
<input class="form-control form-control-sm" @bind-value="@MaxRecord" title="Max number of record to show" />
<button id="btnReset" class="btn btn-primary btn-sm btn-block" @onclick="() => ReloadData(true)" title="Reset Filter"><span class="oi oi-loop-circular"></span></button>
<button class="btn btn-default btn-block" @onclick="toggleShowParams" title="Hide Parameters"><i class="fa-solid fa-ellipsis-vertical"></i></button>
</div>
<input class="form-control form-control-sm" @bind-value="@MaxRecord" title="Max number of record to show" />
</div>
}
else
{
<div class="input-group input-group-sm">
<button class="btn btn-default btn-block" @onclick="toggleShowParams" title="Show Parameters"><i class="fa-solid fa-ellipsis-vertical"></i></button>
</div>
}
</div>
</div>
</div>
@@ -81,8 +90,8 @@
<h5>Alarm History</h5>
</div>
@*<div class="py-1" style="border-left: 3px solid black;
height: 30px;"></div>*@
<div ></div>
height: 30px;"></div>*@
<div></div>
<h7 class="py-1">Choose mode:</h7>
<div class="form-switch mx-2 py-1 col-6 d-flex justify-content-between">
<input class="form-check-input col-2 py-1" type="checkbox" role="switch" id="toggleRec" title="Show Alarms log or Alarm rec" @onclick="() => toggleRec()">
+7
View File
@@ -255,5 +255,12 @@ namespace MP.MONO.UI.Pages
}
#endregion Private Properties
private bool showParams = false;
private void toggleShowParams()
{
showParams = !showParams;
}
}
}