本文介绍了如何为GridView应用快捷键(编辑,更新,取消,删除,选择)?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何为GridView应用快捷键(编辑,更新,取消,删除,选择)???



例如:

编辑 - Alt + E

更新 - Alt + u

取消 - Alt + C

删除 - ALt + D

选择 - 使用箭头键。

任何人帮助我?

How to apply Shortcut Key for GridView (Edit, Update, cancel, Delete, Select )???

Example:
Edit- Alt+E
Update- Alt+u
Cancel- Alt+C
Delete- ALt+D
Select- use arrow key.
any one help me??

推荐答案

//...
if(e.KeyCode == Keys.D && Keys.Alt)
{
     dataGridView1.CurrentCell.Text = "";
}


这篇关于如何为GridView应用快捷键(编辑,更新,取消,删除,选择)?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-30 01:16