ARCed.Scintilla.GoToDialog.GoToDialog_Load C# (CSharp) Method

GoToDialog_Load() private method

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