AdvancedLogParser.PrimaryDisplay.RemoveButtons C# (CSharp) Méthode

RemoveButtons() private méthode

private RemoveButtons ( ) : void
Résultat void
        private void RemoveButtons()
        {
            if (this.Controls.Contains(thisMonth))
            {
                this.Controls.Remove(thisMonth);
            }
            if (this.Controls.Contains(lastMonth))
            {
                this.Controls.Remove(lastMonth);
            }
            if (this.Controls.Contains(older))
            {
                this.Controls.Remove(older);
            }
        }
    }