구매 검증 기능 추가 전 백업

This commit is contained in:
chi
2023-07-12 11:16:50 +09:00
parent a1a42b3508
commit 2e484b04e0

View File

@@ -470,7 +470,6 @@ namespace FPJ0000.OtConfirm
radOut.BackColor = SystemColors.Control; radOut.BackColor = SystemColors.Control;
groupBox1.Enabled = true; groupBox1.Enabled = true;
textBox1.Enabled = false; textBox1.Enabled = false;
textBox2.Enabled = textBox1.Enabled;
} }
else if (radDay.Checked) else if (radDay.Checked)
{ {
@@ -485,7 +484,7 @@ namespace FPJ0000.OtConfirm
radOut.BackColor = SystemColors.Control; radOut.BackColor = SystemColors.Control;
groupBox1.Enabled = true; groupBox1.Enabled = true;
textBox1.Enabled = false; textBox1.Enabled = false;
textBox2.Enabled = textBox1.Enabled;
} }
else if (radOut.Checked) else if (radOut.Checked)
{ {
@@ -497,7 +496,7 @@ namespace FPJ0000.OtConfirm
else textBox2.Enabled = true; else textBox2.Enabled = true;
groupBox1.Enabled = !textBox1.Enabled; groupBox1.Enabled = !textBox1.Enabled;
} }
textBox2.Enabled = textBox1.Enabled;
if (binit) if (binit)
UpdateStatus(); UpdateStatus();
} }