Exemple #1
0
 internal static void CreateAndShowDialog(GrblCore core)
 {
     using (SettingsForm sf = new SettingsForm(core))
         sf.ShowDialog();
 }
 private void settingsToolStripMenuItem_Click(object sender, EventArgs e)
 {
     SettingsForm.CreateAndShowDialog(Core);
 }
Exemple #3
0
 internal static void CreateAndShowDialog()
 {
     using (SettingsForm sf = new SettingsForm())
         sf.ShowDialog();
 }