AA2Install.formMain.lsvMods_KeyPress C# (CSharp) Method

lsvMods_KeyPress() private method

private lsvMods_KeyPress ( object sender, KeyEventArgs e ) : void
sender object
e KeyEventArgs
return void
        private void lsvMods_KeyPress(object sender, KeyEventArgs e)
        {
            switch (e.KeyCode)
            {
                case Keys.Delete:
                    deleteSelectedMods();
                    break;
            }
        }