個々のセルをダブルクリックするためのイベントハンドラーを作成するDataGridViewがあります。Windows.Forms.DataGridViewCellEventHandlerをDataGridView.DoubleClickイベントに追加しようとしていますが、System.EventHandlerのみを受け入れます。単純な型キャストは機能しないようです:
this.song_grid.DoubleClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.cell_doubleclick);
DataGridViewにDataGridViewCellEventHandlerを受け入れるための最良の方法を教えてもらえますか?前もって感謝します。