예제 #1
0
        private void OpenSettingsToolStripMenuItem_Click(object sender, EventArgs e)
        {
            if (!File.Exists(appConfig.GetAppSettingsFile()))
            {
                MessageBox.Show("Application Option file does not exists yet.");
                return;
            }

            Process.Start("explorer.exe", Path.GetDirectoryName(appConfig.GetAppSettingsFile()));
        }