翻译 void sheet_CellMouseDown(object sender, CellMouseEventArgs e) { var cell = e.Cell; if (cell.Column == 1) { Openurl(cell. Row); } }
时间: 2023-05-31 13:04:06 浏览: 156
void sheet_CellMouseDown(object sender, CellMouseEventArgs e) {
var cell = e.Cell;
if (cell.Column == 1) {
Openurl(cell.Row);
}
}
当鼠标在单元格上按下时,该方法会被调用。首先获取当前单元格,如果该单元格位于第一列,则调用Openurl方法并传递该单元格所在的行数作为参数。
阅读全文