Exemple #1
0
 public void ChangeState()
 {
     df2.ChangeFormState(mainPanel);
     mainPanel    = null;
     newGroupList = null;
     df2          = null;
 }
Exemple #2
0
        public int[][] ChangeState()
        {
            df2.ChangeFormState(mainPanel);
            mainPanel    = null;
            newGroupList = null;
            df2          = null;

            return(newGroups);
        }
Exemple #3
0
        public void ClearAndStart(int[][] outputGroups, string[][] mainArray)
        {
            Calculation2 c2 = new Calculation2(outputGroups.Clone() as int[][], mainArray.Clone() as string[][]);

            c2.StartCalculation(out newArray, out newGroups, out groupPosition);

            df2 = new DrawingForm2();
            df2.StartDraw(mainPanel, newArray, groupPosition);

            GroupsOutput();
        }