我在spread中使用CheckBoxCellType列用于选择行数据,我需要在点击时触发事件(例如计算选中的行数),但是使用spread_CellClick事件并不能每次都触发该事件(在同一行点击就不能触发),请问是我事件使用错误么?
private void spread_CellClick(object sender, CellClickEventArgs e)
{
MessageBox.Show(this.spread.ActiveSheet.Cells[e.Row, 0].Value.ToString());
}
新手入门,谢谢!
原来是使用spread_ButtonClicked事件!谢谢各位! |
|