我有一个 DataGridView,我想为它创建一个事件处理程序,用于双击单个单元格。我正在尝试将 Windows.Forms.DataGridViewCellEventHandler 添加到 DataGridView.DoubleClick 事件,但它只会接受 System.EventHandler。一个简单的类型转换似乎不起作用:
this.song_grid.DoubleClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.cell_doubleclick);
有人可以告诉我让我的 DataGridView 接受 DataGridViewCellEventHandler 的最佳方法吗?提前致谢。