首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > .NET > C# >

求注释解决办法

2012-04-13 
求注释this.dGVReceipts.CellEnter + new System.Windows.Forms.DataGridViewCellEventHandler(this.dGVR

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

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

热点排行