可以自己通过监听SelectionChanged,重新对下拉框中的列表数据进行修改,当然你可以在代码中参考左边的一个单元格的数值
- private void FpSpread1_SelectionChanged(object sender, SelectionChangedEventArgs e)
- {
- var cell = fpSpread1.ActiveSheet.ActiveCell;
- if (cell.Column.Index == 1 && cell.CellType is ComboBoxCellType) {
- (cell.CellType as ComboBoxCellType).Items = new string[] { "1", "2", "3" };
- }
- }
复制代码 |