ARCed.Scripting.ScriptStyleForm.listBoxStyles_SelectedIndexChanged C# (CSharp) 메소드

listBoxStyles_SelectedIndexChanged() 개인적인 메소드

private listBoxStyles_SelectedIndexChanged ( object sender, EventArgs e ) : void
sender object
e System.EventArgs
리턴 void
        private void listBoxStyles_SelectedIndexChanged(object sender, EventArgs e)
        {
            this._suppressEvents = true;
            ScriptStyle style = this.CurrentStyle;
            this.fontSelector.UserFont = style.Font;
            this.panelColorFore.BackColor = style.ForeColor;
            this.panelColorBack.BackColor = style.BackColor;
            this._suppressEvents = false;
        }