DarkRoomW.frmMain.txtPage_LostFocus C# (CSharp) Method

txtPage_LostFocus() private method

private txtPage_LostFocus ( object sender, EventArgs e ) : void
sender object
e EventArgs
return void
        private void txtPage_LostFocus(object sender, EventArgs e)
        {
            if (Properties.Settings.Default.NeutralHighlight)
            {
                int[] elements = { Eclectic.COLOR_HIGHLIGHT, Eclectic.COLOR_HIGHLIGHTTEXT };
                int[] colors = { highlight, highlightText };

                Eclectic.SetSysColors(elements.Length, elements, colors);
            }

            Eclectic.SetCaretBlinkTime(blinkRate);
        }