AdvancedLogParser.PrimaryDisplay.ClickPlayerList C# (CSharp) 메소드

ClickPlayerList() 공개 메소드

public ClickPlayerList ( object Sender, EventArgs e ) : void
Sender object
e System.EventArgs
리턴 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);
            }
        }