- protected void Page_Load(object sender, EventArgs e)
- {
- if (!IsPostBack)
- {
- CButtonCellType bct = new CButtonCellType();
- bct.ShowEllipsis = true;
- bct.ButtonType = FarPoint.Web.Spread.ButtonType.ImageButton;
- FpSpread1.ActiveSheetView.Columns[0].CellType = bct;
- }
- }
- [Serializable]
- public class CButtonCellType : FarPoint.Web.Spread.ButtonCellType
- {
- public override Control PaintCell(string id, TableCell parent, FarPoint.Web.Spread.Appearance style, FarPoint.Web.Spread.Inset margin, object value, bool upperLevel)
- {
- System.Web.UI.WebControls.ImageButton ctl = base.PaintCell(id, parent, style, margin, value, upperLevel) as System.Web.UI.WebControls.ImageButton;
- ctl.Attributes.Add("title","Test");
- return ctl;
- }
- }
复制代码 |