DevExpress XtraGrid网格控件示例二:利用快捷键删除行
作者:zhuhm 来源:本站原创 浏览:Loading...次 发布时间:2012-10-16 评论:0条
本文的代码示例主要展示当终端用户按下Ctrl+Del 快捷键时,删除焦点行的操作。要处理按键事件,首先我们需要处理BaseView.KeyDown事件。然后通过调用ColumnView.DeleteRow 方法,删除焦点行。
C#
private void gridView1_KeyDown(object sender, System.Windows.Forms.KeyEventArgs e) { if (e.KeyCode == Keys.Delete && e.Modifiers == Keys.Control) { if (MessageBox.Show("Delete row?", "Confirmation", MessageBoxButtons.YesNo) != DialogResult.Yes) return; GridView view = sender as GridView; view.DeleteRow(view.FocusedRowHandle); } }
VB
Private Sub GridView1_KeyDown(ByVal sender As Object, _ ByVal e As System.Windows.Forms.KeyEventArgs) Handles GridView1.KeyDown If (e.KeyCode = Keys.Delete And e.Modifiers = Keys.Control) Then If (MessageBox.Show("Delete row?", "Confirmation", _ MessageBoxButtons.YesNo) <> DialogResult.Yes) Then Return Dim view As GridView = CType(sender, GridView) view.DeleteRow(view.FocusedRowHandle) End If End Sub
本站文章除注明转载外,均为本站原创或翻译
欢迎任何形式的转载,但请务必注明出处,尊重他人劳动成果
转载请注明:文章转载自:DevExpress控件中文网 [http://www.devexpresscn.com/]
本文地址:http://www.devexpresscn.com/Resources/CodeExamples-282.html
欢迎任何形式的转载,但请务必注明出处,尊重他人劳动成果
转载请注明:文章转载自:DevExpress控件中文网 [http://www.devexpresscn.com/]
本文地址:http://www.devexpresscn.com/Resources/CodeExamples-282.html
关键字: Grid 网格 XtraGrid WinForms控件
评论列表
暂无评论
请谈谈你的看法 请使用IE或者Firefox浏览器,暂不支持Chrome!
慧都控件网为DevExpress界面控件的中国地区唯一正式授权经销商,正版控件销售公司,授权代理商,经销商及合作伙伴。
电话:400-700-1020
023-66090381
邮箱:sales@evget.com
相关资源
- DevExpress图表控件本周技术文档汇总
- 如何过滤ASPxGridView中基于选定行的XtraReport数据?
- 如何实现XtraGrid数据集更新
- XtraGrid数据绑定示例一:添加非绑定列
- XtraGrid数据绑定示例二:服务器模式下绑定GridControl到数据库
- XtraGrid行操作使用技巧
- DevExpress XtraGrid使用方法大全
- DevExpress XtraGrid网格获取主、从表行列值的方法
- 解决DevExpress Grid字符串的格式不正确的问题
- DevExpress 经典常用功能代码收集
- DevExpress XtraGrid网格控件示例一:指定列编辑器