Spread Studio for .NET使用教程:將皮膚應(yīng)用到工作表
用戶在使用 Spread Studio for .NET 時可以通過應(yīng)用皮膚快速自定義工作表外觀。皮膚對于整個工作表而言,和顏色、網(wǎng)格線,以及是否顯示表頭一樣,都是一個外觀屬性的集合。這將省去單獨設(shè)置屬性的時間和精力。Spread含有幾個內(nèi)置的隨時可以使用的皮膚。用戶也可以創(chuàng)建自己的自定義皮膚并保存,這樣你就可以在其它Spread組件中使用同樣的格式。
如果要創(chuàng)建并應(yīng)用自定義工作表皮膚,請參照:
Spread Studio for .NET使用教程:為控件創(chuàng)建自定義皮膚
》》》免費下載Spread Studio for .NET最新版
使用SheetSkin Editor
應(yīng)用默認(rèn)工作表皮膚,可以按照以下步驟:
在Form窗口中,單擊想要設(shè)置皮膚的SheetView對象。
在Properties屬性窗口的底部,單擊Edit Skins。
在SheetSkin Editor編輯器中,在預(yù)定義工作表皮膚列表中選擇一個預(yù)先定義的皮膚,然后單擊OK關(guān)閉編輯器。
使用代碼
這個示例代碼將使用Colorful2預(yù)定義皮膚設(shè)置第一張工作表。
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