private void editConfigsButton_Click(object sender, System.EventArgs e)
 {
     using (ConfigurationEditor editor = new ConfigurationEditor(project))
     {
         this.Site.Container.Add(editor);
         editor.ShowDialog();
     }
     configComboBox_Populate();
 }