Alsing.Windows.Forms.SyntaxBox.FindReplaceForm.ShowReplace C# (CSharp) Method

ShowReplace() public method

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