读书人

求注释解决办法

发布时间: 2012-04-13 13:50:24 作者: rapoo

求注释
this.dGVReceipts.CellEnter += new System.Windows.Forms.DataGridViewCellEventHandler(this.dGVReceipts_CellEnter);
这句话是什么意思?怎么调用的

[解决办法]
貌似是自己调用自己?
括号里面 应该写一个别的委托吧。。。
[解决办法]
给事件添加处理函数
[解决办法]
动态绑定this.dGVReceipts.CellEnter 事件到 dGVReceipts_CellEnter上
[解决办法]
dGVReceipts.CellEnter 是一个事件,这句话只是说dGVReceipts.CellEnter事件发生时,调用dGVReceipts_CellEnter方法,

读书人网 >C#

热点推荐