GrapeCity.Win.Containers.Skins 名前空間 : Office2007BlackSkin クラス |
Public Class Office2007BlackSkin Inherits Office2007StripSkin
public class Office2007BlackSkin : Office2007StripSkin
次のサンプルコードは、Office2007BlackSkinを使用してGrapeCity.Win.Containers.GcTabControlをOffice2007の黒の外観で描画する方法を示します。この例を実行するには、以下のコードをSystem.Windows.Forms.Formに追加し、ここで作成したメソッドをコンストラクターまたはフォーム上の別のメソッドから呼び出す必要があります。
public void CreateOffice2007BlackGcTabControl() { // Create a GcTabControl. GcTabControl gcTabControl = new GcTabControl(); // Set the size and location of gcTabControl. gcTabControl.Size = new Size(200, 200); gcTabControl.Location = new Point(10, 10); // Add some tab pages to gcTabControl. gcTabControl.TabPages.AddRange(new GcTabPage[] { new GcTabPage("page1"), new GcTabPage("page2"), new GcTabPage("page3"), }); // Always show the close button of all tabs. gcTabControl.CloseButtonVisibility = CloseButtonVisibility.Always; // Use the Office2007BlackSkin to render gcTabControl. gcTabControl.Appearance = GrapeCity.Win.Containers.TabAppearance.Skin; gcTabControl.Skin = new Office2007BlackSkin(); this.Controls.Add(gcTabControl); }
Public Sub CreateOffice2007BlackGcTabControl() ' Create a GcTabControl. Dim gcTabControl As New GcTabControl() ' Set the size and location of gcTabControl. gcTabControl.Size = New Size(200, 200) gcTabControl.Location = New Point(10, 10) ' Add some tab pages to gcTabControl. gcTabControl.TabPages.AddRange(New GcTabPage() {New GcTabPage("page1"), New GcTabPage("page2"), New GcTabPage("page3")}) ' Always show the close button of all tabs. gcTabControl.CloseButtonVisibility = CloseButtonVisibility.Always ' Use the Office2007BlackSkin to render gcTabControl. gcTabControl.Appearance = Global.GrapeCity.Win.Containers.TabAppearance.Skin gcTabControl.Skin = New Office2007BlackSkin() Me.Controls.Add(gcTabControl) End Sub
System.Object
GrapeCity.Win.Containers.Skins.StripSkin
GrapeCity.Win.Containers.Skins.Skin
GrapeCity.Win.Containers.Skins.Office2007StripSkin
GrapeCity.Win.Containers.Skins.Office2007BlackSkin
Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2