lkxtracy 发表于 2017-1-6 10:09:06

Spread For ASP.NET 页面背景图片问题

ASP.NET平台下的Spread控件不支持页背景图片,想请问一下有没有别的办法把背景图片在页面上展示出来?

lkxtracy 发表于 2017-1-6 10:18:42

自己顶一个

dexteryao 发表于 2017-1-6 12:05:50

您好,
aspnet 可以添加 单元格背景图片。


            FarPoint.Web.Spread.Background bg = new FarPoint.Web.Spread.Background();
            bg.SelectedBackgroundImageUrl = "picture/Winter.jpg";
            bg.BackgroundImageUrl = "picture/Image.bmp";
            bg.Enable = true;
            bg.BackgroundAttachment = "fixed";// inherit, scroll.
            bg.BackgroundPosition = "50% 50%";
            bg.BackgroundRepeat = "repeat-x";

            FarPoint.Web.Spread.Cell mycell;
            mycell = FpSpread1.ActiveSheetView.Cells;
            mycell.Background = bg;

lkxtracy 发表于 2017-1-9 09:09:33

dexteryao 发表于 2017-1-6 12:05
您好,
aspnet 可以添加 单元格背景图片。



您好,我需要的不是单元格图片。是整个表页的背景图片。

lkxtracy 发表于 2017-1-9 09:09:41

dexteryao 发表于 2017-1-6 12:05
您好,
aspnet 可以添加 单元格背景图片。



您好,我需要的不是单元格图片。是整个表页的背景图片。

dexteryao 发表于 2017-1-9 11:42:52

整个sheet的背景没有支持,
您可以直接使用 css添加背景。

    <style>

      #<%=FpSpread1.ClientID %>{
            background:url("background.jpg") no-repeat
      }
    </style>
页: [1]
查看完整版本: Spread For ASP.NET 页面背景图片问题