DarkRoomW.frmMain.txtPage_LostFocus C# (CSharp) 메소드

txtPage_LostFocus() 개인적인 메소드

private txtPage_LostFocus ( object sender, EventArgs e ) : void
sender object
e EventArgs
리턴 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);
        }