refactor(UI): WinForms UI 레이아웃 개선

This commit is contained in:
ChiKyun Kim
2025-08-25 09:14:48 +09:00
parent 1f3a7b57c1
commit 31553af571
5 changed files with 1038 additions and 577 deletions

View File

@@ -178,8 +178,9 @@ namespace FCM0000.Item
private void checkBox1_CheckedChanged(object sender, EventArgs e)
{
tbSid.Enabled = !checkBox1.Enabled;
tbSid.Enabled = !checkBox1.Checked;
if (checkBox1.Checked) tbSid.Text = "신규";
else if (tbSid.Text == "신규") tbSid.Text = "";
}
private void fItemAdd_Load(object sender, EventArgs e)