feature(BuildCalc) Added reset button, can change micro delay, and can alter timing interval again

This commit is contained in:
2022-04-14 22:28:14 -04:00
parent 4cef578cd0
commit 04c1718259
115 changed files with 1561 additions and 1308 deletions
+6 -3
View File
@@ -1,5 +1,6 @@
<div class="formContainer">
@if (Label != "") {
@if (Label != "")
{
<div class="formLabel">
@Label
</div>
@@ -13,7 +14,8 @@
id="@labelId"
@onchange="OnChange"/>
</div>
@if (Info != "") {
@if (Info != "")
{
<div class="formInfo">
@Info
</div>
@@ -68,7 +70,8 @@
private string labelId = "";
protected override void OnInitialized() {
protected override void OnInitialized()
{
labelId = Label.ToLower().Replace(" ", "_");
}