Alsing.Windows.Forms.SyntaxBox.FindReplaceForm.ShowReplace C# (CSharp) 메소드

ShowReplace() 공개 메소드

Displays the FindReplaceForm and sets it in "Replace" mode.
public ShowReplace ( ) : void
리턴 void
        public void ShowReplace()
        {
            pnlReplace.Visible = true;
            pnlReplaceButtons.Visible = true;
            Text = "Replace";
            Show();
            Height = 200;
            btnDoReplace.Visible = true;
            btnReplace.Visible = false;
            _Last = "";
            cboFind.Focus();
        }