This commit is contained in:
2010-08-12 16:08:57 +00:00
parent 0849b002b4
commit 5d77b1aec4
3 changed files with 30 additions and 0 deletions

View File

@@ -25,6 +25,7 @@ using vlnServerLibrary;
using VEPROMS.CSLA.Library;
using Config;
using Volian.Controls.Library;
using Volian.Base.Library;
[assembly: log4net.Config.XmlConfigurator(Watch = true)]
@@ -599,5 +600,14 @@ namespace DataLoader
fsrestore.WriteLine(pause);
fsrestore.Close();
}
private void checkBox1_CheckedChanged(object sender, EventArgs e)
{
VlnSettings.DebugMode = checkBox1.Checked;
if (checkBox1.Checked)
Loader.OverrideColor = Color.Red;
else
Loader.OverrideColor = Color.Empty;
}
}
}