ARCed.Scintilla.GoToDialog.GoToDialog_Load C# (CSharp) 메소드

GoToDialog_Load() 개인적인 메소드

private GoToDialog_Load ( object sender, EventArgs e ) : void
sender object
e EventArgs
리턴 void
        private void GoToDialog_Load(object sender, EventArgs e)
        {
            string displayLine = (this._currentLineNumber + 1).ToString();

            this.txtCurrentLine.Text = displayLine;
            this.txtMaxLine.Text = this._maximumLineNumber.ToString();
            this.txtGotoLine.Text = displayLine;

            this.txtGotoLine.Select();
        }