Nanook.QueenBee.EditorForm.txtStringSearch_KeyDown C# (CSharp) Method

txtStringSearch_KeyDown() private method

private txtStringSearch_KeyDown ( object sender, KeyEventArgs e ) : void
sender object
e KeyEventArgs
return void
        private void txtStringSearch_KeyDown(object sender, KeyEventArgs e)
        {
            if (e.KeyData == Keys.Enter || e.KeyData == Keys.Return)
                btnStringSearch_Click(this, new EventArgs());
        }
EditorForm