BEurtle.IssuesForm.BERepoLocation_KeyPress C# (CSharp) Méthode

BERepoLocation_KeyPress() private méthode

private BERepoLocation_KeyPress ( object sender, KeyPressEventArgs e ) : void
sender object
e KeyPressEventArgs
Résultat void
        private void BERepoLocation_KeyPress(object sender, KeyPressEventArgs e)
        {
            if (e.KeyChar == 13)
            {
                e.Handled = true;
                loadIssues();
            }
        }