ARKBreedingStats.Pedigree.ClearControls C# (CSharp) Method

ClearControls() public method

public ClearControls ( ) : void
return void
        public void ClearControls()
        {
            // clear pedigree
            this.SuspendLayout();
            foreach (PedigreeCreature pc in pcs)
                pc.Dispose();
            lines.Clear();
            lines.Add(new List<int[]>());
            lines.Add(new List<int[]>());
            pictureBox.Image = null;
            this.ResumeLayout();
        }