从excel导入数据时,excel中有下拉 的列导入spread就能显示出下拉按钮,而spread自身初始化combobox列只有点一下单元格才能显示按钮,不知道能不能做成直接显示按钮的样子。
我的初始化代码:
FarPoint.Web.Spread.ComboBoxCellType cmb = new FarPoint.Web.Spread.ComboBoxCellType();
String[] cbstrstts = new String[] { "a", "b", "c" };
cmb.Items = cbstrstts;
cmb.ShowButton = true;
FpSpread1.Columns[0].Editor = cmb; |
|