private void btnLoadDefaults_Click(object sender, EventArgs e) { DefaultValues defaultValues = new DefaultValues(this); defaultValues.loadDefaults(); if (defaultValues.malformedConfig == false) { MessageBox.Show("Default configuration values loaded into TFS Projects", "Default values loaded", MessageBoxButtons.OK, MessageBoxIcon.Exclamation); } }
void frmMain_Load(object sender, EventArgs e) { UIControl UIController = new UIControl(this); DisplayText displayInitText = new DisplayText(this); DefaultValues defaultValues = new DefaultValues(this); //UIController.disableProjectUIControls(); defaultValues.loadDefaults(); defaultValues.checkCopying(); displayInitText.initText(); displayInitText.helpText(); displayInitText.copyingText(); rtfMain.AppendText("Awaiting user input..."); tabMain.SelectTab(4); UIController.disableProjectUIControls(); }