public bool showDialog() { myCustomDialog dialog = new myCustomDialog("Segmentacja przez dzielenie", "Podaj próg dzielenia:"); if (dialog.ShowDialog() == DialogResult.Cancel) return false; tresholdRange = System.Convert.ToInt32(dialog.value); return true; }
public bool showDialog() { myCustomDialog dialog = new myCustomDialog("Segmentacja przez rozszerzanie", "Podaj wartość punktów startu:", "Podaj przedział segmentacji:"); if (dialog.ShowDialog() == DialogResult.Cancel) return false; seedPoint = System.Convert.ToInt32(dialog.value); tresholdRange = System.Convert.ToInt32(dialog.value2); return true; }