ComboxCellType 不同选项定制不同的背景色
问题描述:如何获取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.Cells.CellType = comboBoxCellType1;
comboBoxCellType1.EditorValueChanged += newEventHandler(comboBoxCellType1_EditorValueChanged);
}
源码下载:
VS版本:2010
.NET版本: 2.0
点击下载
效果截图:
页:
[1]