按键事件
我使用代码 datagrid1.controls.add(frmnew)
将表单添加到 datagridview。问题是,该表单中的控件的按键事件未触发。请给我一个解决方案。
I added a form to a datagridview using the code datagrid1.controls.add(frmnew)
. The issue is that, key press event of the controls in that form is not firing. Please give me a solution for this.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您使用的是 Windows 窗体:
检查您的 .Designer.cs 文件是否有事件处理程序。
事件处理程序如下所示:
If you are using windows forms:
Check in your .Designer.cs file that you have an event handler.
An event handler looks like this:
如果要捕获 datagridview 控件内的按键事件,则必须连接事件 EditingControlShowing。下面是捕获按键事件并仅允许将数字数据输入到 datagridview 单元格的示例。
If you want to capture that keypress event inside of the datagridview control, then you must wire up the event EditingControlShowing. Here is an example of capturing the keypress event and only allowing numeric data to be entered into the datagridview cell.