Spread For ASP.NET 页面背景图片问题
ASP.NET平台下的Spread控件不支持页背景图片,想请问一下有没有别的办法把背景图片在页面上展示出来?自己顶一个 您好,
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; dexteryao 发表于 2017-1-6 12:05
您好,
aspnet 可以添加 单元格背景图片。
您好,我需要的不是单元格图片。是整个表页的背景图片。 dexteryao 发表于 2017-1-6 12:05
您好,
aspnet 可以添加 单元格背景图片。
您好,我需要的不是单元格图片。是整个表页的背景图片。 整个sheet的背景没有支持,
您可以直接使用 css添加背景。
<style>
#<%=FpSpread1.ClientID %>{
background:url("background.jpg") no-repeat
}
</style>
页:
[1]