示例#1
0
        public static void Show(string regLocation)
        {
            registryAppKey = regLocation;

            DefaultsForm form = new DefaultsForm();

            form.ShowDialog();
        }
示例#2
0
		public static void Show(string regLocation) {
			registryAppKey = regLocation;

			DefaultsForm form = new DefaultsForm();
			form.ShowDialog();
		}
示例#3
0
 private void btnEditDefaults_Click(object sender, System.EventArgs e)
 {
     DefaultsForm.Show(registryAppKey);
 }