示例#1
0
 private void BubbleSortRun(object sender, EventArgs e)
 {
     HideMainWindow();
     
     var bubbleSortForm = new SortingForm(this, "Visualizer.BubbleSortFormSettings", IdentifiersSorts.BubbleSort);
     bubbleSortForm.Show();
 }
示例#2
0
        private void HeapSortRun(object sender, EventArgs e)
        {
            HideMainWindow();

            var selectionSortForm = new SortingForm(this, "Visualizer.HeapSortFormSettings", IdentifiersSorts.HeapSort);

            selectionSortForm.Show();
        }