1

我正在尝试为 Spread.NET 创建自定义单元格类型。我得到的错误是

无法调用抽象基成员:'FarPoint.Web.Spread.BaseCellType.PaintCell(string, System.Web.UI.WebControls.TableCell, FarPoint.Web.Spread.Appearance, FarPoint.Web.Spread.Inset, object, bool) '

这是代码

[Serializable()]
public class BarcodeCellType : FarPoint.Web.Spread.BaseCellType
{
    public override Control PaintCell(string id, TableCell parent, Appearance style, Inset margin, object value, bool upperLevel)
    {
        parent.Attributes.Add("FpCellType", "BarcodeCellType");

        if (value != null)
        {
            try
            {
                MemoryStream ms = GenerateBarCode(value.ToString());
                var img = Bitmap.FromStream(ms);
                value = img;
            }
            catch (Exception ex)
            {
                value = ex.ToString();
            }
        }

        return base.PaintCell(id, parent, style, margin, value, upperLevel); //ERROR HERE
    }

    private MemoryStream GenerateBarCode(string codeInfo)
    {
        using (MemoryStream ms = new MemoryStream())
        {
            BarCodeBuilder bb = new BarCodeBuilder();
            bb.CodeText = codeInfo;
            bb.SymbologyType = Symbology.Code128;
            bb.BarCodeImage.Save(ms, System.Drawing.Imaging.ImageFormat.Jpeg);
            return ms;
        }
    }
}
4

5 回答 5

1

PaintCellabstract未声明virtual,因此您无法base.PaintCell拨打电话。由您的代码创建Control对象并返回它。

如果您不想创建,Control您可能希望从比派生类方法更多的派生类继承BaseCellType并覆盖该派生类PaintCell方法。

于 2014-01-20T16:33:21.107 回答
1

基本成员是抽象的,这意味着没有实现。删除调用base.PaintCell将允许代码编译,但我不确定是否会得到您必须工作的代码。

于 2014-01-20T16:34:37.297 回答
1

抽象方法不附带实现;子类必须提供一个实现,这正是您正在做的。

只是省略调用。

于 2014-01-20T16:41:34.383 回答
1

这是因为在您的抽象类“FarPoint.Web.Spread.BaseCellType”中,您可能将 PaintCell 方法定义为抽象方法,并且抽象方法声明引入了一个新的虚拟方法,但没有提供该方法的实现。相反,非抽象派生类(“BarcodeCellType”)需要通过覆盖该方法来提供它们自己的实现。因为抽象方法没有提供实际的实现。

于 2014-01-20T16:52:58.000 回答
-1

你不能调用抽象方法。它需要在派生类中定义。

于 2014-01-20T16:33:40.107 回答