ConfigurationForm - btnSaveSettings_Click: fix typo

This commit is contained in:
DucDangAnh 2020-07-20 15:38:37 +07:00
parent aa1aae8c6c
commit aa73bf8129

View File

@ -34,7 +34,7 @@ namespace AIParkingApplication
Util.UpsertAppSettings("USE_PRINTER", chkAllowUsePrinter.Checked.ToString().ToLower()); Util.UpsertAppSettings("USE_PRINTER", chkAllowUsePrinter.Checked.ToString().ToLower());
Util.UpsertAppSettings("ALLOW_CHANGE_ROI_RECT", chkAllowChangeROIRect.Checked.ToString().ToLower()); Util.UpsertAppSettings("ALLOW_CHANGE_ROI_RECT", chkAllowChangeROIRect.Checked.ToString().ToLower());
Util.UpsertAppSettings("AUTO_LOGIN", chkAllowAutoLogin.Checked.ToString().ToLower()); Util.UpsertAppSettings("AUTO_LOGIN", chkAllowAutoLogin.Checked.ToString().ToLower());
toolStripStatusLabelSavedSettingStatus.Text = $"{DateTime.Now.GetTimeFormatted()}\tĐã lưu cài đặt"; toolStripStatusLabelSavedSettingStatus.Text = $"{DateTime.Now.GetTimeFormatted()} Đã lưu cài đặt";
} }
private void ConfigurationForm_Load(object sender, EventArgs e) private void ConfigurationForm_Load(object sender, EventArgs e)