entity.MapForms.MapForm.searchTextBox_KeyPress C# (CSharp) Method

searchTextBox_KeyPress() private method

The search text box_ key press.
private searchTextBox_KeyPress ( object sender, KeyPressEventArgs e ) : void
sender object The sender.
e System.Windows.Forms.KeyPressEventArgs The e.
return void
        private void searchTextBox_KeyPress(object sender, KeyPressEventArgs e)
        {
            if (e.KeyChar == 13)
            {
                searchButton_Click(sender, e);
            }
        }
MapForm