AdvancedLogParser.PrimaryDisplay.ClickPlayerList C# (CSharp) Method

ClickPlayerList() public method

public ClickPlayerList ( object Sender, EventArgs e ) : void
Sender object
e System.EventArgs
return void
        public void ClickPlayerList(object Sender, EventArgs e)
        {
            if (this.Controls.Contains(thisMonth))
            {
                // We're already viewing player lists. Drop this.
                return;
            }
            else
            {
                // Remove old buttons.
                RemoveButtons();

                this.Controls.Add(thisMonth);
                this.Controls.Add(lastMonth);
                this.Controls.Add(older);
            }
        }