博客
关于我
winform程序C#控制tab和enter按键跳转方式横向竖向任意方式跳datagirdview
阅读量:537 次
发布时间:2019-03-08

本文共 959 字,大约阅读时间需要 3 分钟。

protected override bool ProcessCmdKey(ref Message msg, Keys keyData)

{
// 判断是否按下Enter键且当前Cell不为空
if (keyData == Keys.Enter && this.dataGridView1.CurrentCell != null)
{
// Jump to next cell when Enter is pressed
int columnIndex = dataGridView1.CurrentCell.ColumnIndex;

if (columnIndex == 6)      {          // Check if it's the last row to avoid out-of-bounds          if (dataGridView1.CurrentCell.RowIndex + 1 == dataGridView1.Rows.Count)          {              return true;          }          // Move focus to the next cell in the same row          dataGridView1.CurrentCell = dataGridView1[2, dataGridView1.CurrentCell.RowIndex + 1];      }      // HandleTab key logic for other columns      if (columnIndex == 7)      {          return base.ProcessCmdKey(ref msg, keyData);      }      // Send Tab key for other columns      SendKeys.Send("{Tab}");      return true;  }  // Default handling for other keys  return base.ProcessCmdKey(ref msg, keyData);

}

转载地址:http://qgtiz.baihongyu.com/

你可能感兴趣的文章
MySQL面试宝典
查看>>
WAP短信:融合传统短信和互联网的新型通信方式
查看>>
mysql面试题学校三表查询_mysql三表查询分组后取每组最大值,mysql面试题。
查看>>
Mysql面试题精选
查看>>
MySQL面试题集锦
查看>>
mysql面试题,存储引擎InnoDB和MyISAM
查看>>
mysql面试题:为什么MySQL单表不能超过2000W条数据?
查看>>
mysql面试题:创建索引时会不会锁表?
查看>>
mysql面试题:高度为3的B+树可以存放多少数据?
查看>>
mysql颠覆实战笔记(八)--mysql的自定义异常处理怎么破
查看>>
mysql驱动、durid、mybatis之间的关系
查看>>
mysql驱动支持中文_mysql 驱动包-Go语言中文社区
查看>>
MySQL高可用之——keepalived+互为主从
查看>>
MySQL高可用切换_(5.9)mysql高可用系列——正常主从切换测试
查看>>
MySQL高可用解决方案
查看>>
MySQL高可用解决方案详解
查看>>
MYSQL高可用集群MHA架构
查看>>
MySQL高可用集群架构MHA企业级实战
查看>>
MySQL高级-MySQL存储引擎
查看>>
MySQL高级-MySQL并发参数调整
查看>>