void ucMifConfigEdit_Load(object sender, EventArgs e) { _mifConfig = new MifConfig(); textBox1.Text = _mifConfig.GetConfigValue("Workspace"); textBox2.Text = _mifConfig.GetConfigValue("TEMP"); textBox3.Text = _mifConfig.GetConfigValue("Report"); }
private static void LoadMifEnvironment() { MifConfig config = new MifConfig(); _workSpaceDir = config.GetConfigValue("Workspace"); _cacheDir = config.GetConfigValue("TEMP"); _reportDir = config.GetConfigValue("Report"); }