/// <summary> /// This method joins with the form called Select /// </summary> /// <param name="itemName">Get the item clicked</param> /// <param name="handled">Handled the item</param> public void Kriging_Click(object sender, EventArgs e) { Interpolators myForm = new Interpolators((Map)App.Map, false); // Select myForm = new Select(App.Map); myForm.Show(); }
public double[] OpenInterpolator() { Interpolators myForm = new Interpolators((Map)App.Map, true); if (myForm.ShowDialog() == DialogResult.OK) return myForm.GetTheoreticalModelParameters(); else return null; }