响应Spread的KeyDown事件
发布于: 2014/01/29 00:00
.NET下keydown事件,默认情况是可直接触发的:如在Spread内key按下的时候。然而,在Edit模式下---用户在单元格内输入文字过程,KeyDown事件是不被触发的。
Spread ASP.NET自定义条形码CellType
发布于: 2014/01/29 00:00
用Spread ASP.NET来实现条形码CellType。本文选择的是Aspose条形码生成器.NET控件(可生成任何条码生成器)。<a href="http://www.grapecity.com.cn/image.ashx?picture=barcode-300x152.jpg"><img title="barcode-300x152" style="border-left-width: 0px; border-right-width: 0px; border-bottom-width: 0px; display: inline; border-top-width: 0px" border="0" alt="barcode-300x152" src="http://www.grapecity.com.cn/image.ashx?picture=barcode-300x152.jpg" width="463" height="237" /></a>
Spread ASP.net 通过前端实现单元格合并(Cell Merging)
发布于: 2014/01/16 00:00
这个博客介绍如何能够利用Spread单元格的ROWSPAN属性,来合并单元格: 即,在客户端把相同的值的单元格进行合并。 <a href="http://www.grapecity.com.cn/image.ashx?picture=Spread_JS_Merge.gif"><img title="Spread_JS_Merge" style="display: inline" alt="Spread_JS_Merge" src="http://www.grapecity.com.cn/image.ashx?picture=Spread_JS_Merge.gif" width="450" height="510" />
Spread的行和列随着Winform窗体Resize按比例调整
发布于: 2014/01/14 00:00
我们常听到一些用户的需求:随着Winform窗体尺寸发生变化,Spread行和列的比例能够Resize。由于FpSpread没有内置实现的接口,为了达到同样的效果,需要自定义实现。
在ASP.Net MVC 4 中使用Spread asp.net 7.2控件: Hello MVC
发布于: 2013/12/25 00:00
本文通过一个“Hello World”的示例,手把手的说明如何把Spread 7.2 Asp.net控件应用在ASP.net MVC 4中。需要先明确的是,在MVC 4下,无法再进行类如ASP webForm拖拽控件了,而是需要如下步骤添加:Step1: 添加FarPoint.Mvc.Spread.dll引用Step2:添加Licenses.licxStep3: 修改Global.asax.cs文件Step4:修改Views\Home\Index.cshtml文件-添加控件Step5:在Controller中添加MvcSpreadEvent
Spread 之自定义对角线cellType源码: DiagonalCellType
发布于: 2013/12/19 00:00
在实际项目中有如下三种需求---需要在Spread表头绘制对角线+表头文字:<a href="http://www.grapecity.com.cn/image.ashx?picture=IMG_20131218_151539.jpg"><img title="region2" style="border-left-width: 0px; border-right-width: 0px; border-bottom-width: 0px; display: inline; border-top-width: 0px" border="0" alt="region2" src="http://www.grapecity.com.cn/image.ashx?picture=IMG_20131218_151539.jpg" /></a>
Spread打印设置页眉页脚-插入图片
发布于: 2013/12/17 00:00
我们基于《<a href="http://blog.gcpowertools.com.cn/post/2012/11/13/Spread自定义打印页眉或页脚-.aspx">Spread自定义打印页眉或页脚</a>》这篇文章,来实现在页眉、页脚插入图片。<a href="http://www.grapecity.com.cn/image.ashx?picture=printmargins.png"><img title="printmargins" style="border-left-width: 0px; border-right-width: 0px; border-bottom-width: 0px; display: inline; border-top-width: 0px" border="0" alt="printmargins" src="http://www.grapecity.com.cn/image.ashx?picture=printmargins.png" width="420" height="406" />
spread中文版demo复活记
发布于: 2013/12/13 00:00
《Spread for WinForm 5 中文版 Demo 源码大放送》是2012年初,基于VS 2008 + Spread Winform 5.0版本开发的,而目前最新的Spread Winform用的是7.2版本,VS已经升级到2012了。 这么华丽丽的demo代码,作废吗? 不,仅需要一下几个简单的步骤即可实现复活:替换dll、修改xml文件、删除licenses.licx等。
Spread选择器之探索
发布于: 2013/12/10 00:00
Spread控件,系统默认提供的了2种选择器,分别通过配置属性即可实现。同时,我们也可自定义实现选择器。<a href="http://www.grapecity.com.cn/image.ashx?picture=Spread_Selection.gif"><img title="Spread_Selection" style="display: inline" alt="Spread_Selection" src="http://www.grapecity.com.cn/image.ashx?picture=Spread_Selection.gif" width="407" height="500" /></a>
从数据库加载图片并呈现在Spread里
发布于: 2013/12/06 00:00
Spread提供了数据绑定功能,它允许可以绑定Spread到不同类型的数据源。Spread加载数据库中图像的方法理论如下:把保存在数据库中的字节数组转换为位图图像,在位图图像创建后,它被保存在项目文件夹下,以便它可以被Spread直接访问。