ARCed.Forms.SkinSettingsForm.groupBoxFontSettings_CollapseBoxClickedEvent C# (CSharp) Method

groupBoxFontSettings_CollapseBoxClickedEvent() private method

private groupBoxFontSettings_CollapseBoxClickedEvent ( object sender ) : void
sender object
return void
        private void groupBoxFontSettings_CollapseBoxClickedEvent(object sender)
        {
            int y = this.groupBoxFontSettings.FullHeight - this.groupBoxFontSettings.CollapsedHeight;
            if (this.groupBoxFontSettings.IsCollapsed)
                y *= -1;
            Control[] ctrls = { this.groupBoxGradientSettings, this.buttonApply, this.buttonDefault };
            foreach (Control ctrl in ctrls)
                ctrl.Location = new Point(ctrl.Location.X, ctrl.Location.Y + y);
        }