This commit is contained in:
chi
2025-06-17 17:34:26 +09:00
parent 4aee057726
commit 461a083a06
15 changed files with 614 additions and 165 deletions

View File

@@ -662,5 +662,14 @@ namespace Project
}
private void tbagvaddr_Click(object sender, EventArgs e)
{
var tb = sender as TextBox;
var rlt = UTIL.InputBox("input vlaue", tb.Text);
if (rlt.Item1 == false) return;
if (rlt.Item2.isEmpty()) return;
tb.Text = rlt.Item2;
}
}
}