您好,
非常抱歉,
由于这个功能是在ButtonClicked事件中做的处理,所以无法在设计器中实现。
判断EditingControl 的Type,然后跳转到相应的地方。参考的代码:
- void FpSpread1_ButtonClicked(object sender, FarPoint.Win.Spread.EditorNotifyEventArgs e)
- {
- if (e.EditingControl is FarPoint.Win.FpHyperlink)
- {
- if (e.Row == 1 && e.Column == 3)
- FpSpread1.ActiveSheet.SetActiveCell(5, 1);
- else if (e.Row == 5 && e.Column == 1)
- FpSpread1.ActiveSheetIndex = 0;
- }}
复制代码 |