- protected void Page_Load(object sender, EventArgs e)
- {
- string[] items = new string[] { "正确","不正确"};
- string[] values = new string[] { "1","0"};
- FarPoint.Web.Spread.ComboBoxCellType cbct = new FarPoint.Web.Spread.ComboBoxCellType();
- cbct.Items = items;
- cbct.Values = values;
- cbct.UseValue = true;
- FpSpread1.ActiveSheetView.Columns[0].CellType = cbct;
- }
复制代码 |