问题描述:如何获取ComoboCellType的选择事件,改变单元格的背景色。
问题解答:ComoboCellType提供了EditorValueChanged事件用于捕获选择事件。
关键代码:
- ///<summary>
- ///添加 ComboBoxCellType 单元格类型
- ///</summary>
- private void AddCellType()
- {
- FarPoint.Win.Spread.CellType.ComboBoxCellType comboBoxCellType1 = new FarPoint.Win.Spread.CellType.ComboBoxCellType();
- comboBoxCellType1.Items = (newString[] { "红色", "绿色", });
- fpSpread1.Sheets[0].Cells[0, 0].CellType = comboBoxCellType1;
- comboBoxCellType1.EditorValueChanged += newEventHandler(comboBoxCellType1_EditorValueChanged);
- }
复制代码
源码下载:
VS 版本:2010
.NET版本: 2.0
点击下载
效果截图:
|