Example #1
0
        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;
        }
Example #2
0
        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;
        }