Spread 内置了 19 种皮肤,可以满足不同界面风格喜好。其中包含用途广泛的 Office2007 及 Office2013 皮肤。同时还支持自定义皮肤。
切换内置皮肤方法如下:
FarPoint.Web.Spread.DefaultSkins.Colorful2. Apply(FpSpread1.Sheets[0]);
效果图:
Demo 下载:VS2013+ C# + .NET4.0
自定义皮肤方法如下:
FarPoint.Web.Spread.SheetSkin myskin = new FarPoint.Web.Spread.SheetSkin("MySkin", Color.BlanchedAlmond, Color.Bisque, Color.Navy, 2, Color.Blue, GridLines.Both, Color.Beige, Color.BurlyWood, Color.AntiqueWhite, Color.Brown, Color.Bisque, Color.Bisque, true, true, true, true, false);
myskin.Apply(FpSpread1.Sheets[0]);
以上即为 Spread 皮肤的使用方法。