コード例 #1
0
ファイル: Application.cs プロジェクト: Wanderer19/Tasks
 private void BubbleSortRun(object sender, EventArgs e)
 {
     HideMainWindow();
     
     var bubbleSortForm = new SortingForm(this, "Visualizer.BubbleSortFormSettings", IdentifiersSorts.BubbleSort);
     bubbleSortForm.Show();
 }
コード例 #2
0
ファイル: Application.cs プロジェクト: Wanderer19/Tasks
        private void HeapSortRun(object sender, EventArgs e)
        {
            HideMainWindow();

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

            selectionSortForm.Show();
        }