文档彩票走势图>>Spread Studio for .NET使用教程>>Spread Studio for .NET使用教程:将皮肤应用到工作表
Spread Studio for .NET使用教程:将皮肤应用到工作表
用户在使用 Spread Studio for .NET 时可以通过应用皮肤快速自定义工作表外观。皮肤对于整个工作表而言,和颜色、网格线,以及是否显示表头一样,都是一个外观属性的集合。这将省去单独设置属性的时间和精力。Spread含有几个内置的随时可以使用的皮肤。用户也可以创建自己的自定义皮肤并保存,这样你就可以在其它Spread组件中使用同样的格式。
如果要创建并应用自定义工作表皮肤,请参照:
Spread Studio for .NET使用教程:为控件创建自定义皮肤
》》》免费下载Spread Studio for .NET最新版
使用SheetSkin Editor
应用默认工作表皮肤,可以按照以下步骤:
在Form窗口中,单击想要设置皮肤的SheetView对象。
在Properties属性窗口的底部,单击Edit Skins。
在SheetSkin Editor编辑器中,在预定义工作表皮肤列表中选择一个预先定义的皮肤,然后单击OK关闭编辑器。
使用代码
这个示例代码将使用Colorful2预定义皮肤设置第一张工作表。
C#
// Create new SheetView object. FarPoint.Win.Spread.SheetView newsheet = new FarPoint.Win.Spread.SheetView(); // Apply a skin to the SheetView object. FarPoint.Win.Spread.DefaultSkins.Colorful2.Apply(newsheet); // Assign the SheetView object to the first sheet in the component. fpSpread1.Sheets[0] = newsheet;
VB
' Create new SheetView object. Dim newsheet As New FarPoint.Win.Spread.SheetView() ' Apply a skin to the SheetView object. FarPoint.Win.Spread.DefaultSkins.Colorful2.Apply(newsheet) ' Assign the SheetView object to the first sheet in the component. FpSpread1.Sheets(0) = newsheet