日期:2014-05-18  浏览次数:20656 次

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

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