PowerTools PlusPak for Windows Forms 8.0J
Office2007BlueSkin クラス
メンバ  使用例 

GrapeCity.Win.Containers.GcTabControlおよびGrapeCity.Win.Containers.GcMdiTabControlを描画するためにOffice2007の青スキンを実装します。
構文
Public Class Office2007BlueSkin 
   Inherits Office2007StripSkin
public class Office2007BlueSkin : Office2007StripSkin 
解説
このクラスを使用すると、GrapeCity.Win.Containers.GcTabControlおよびGrapeCity.Win.Containers.GcMdiTabControlをOffice2007の青の外観で描画できます。
使用例

次のサンプルコードは、Office2007BlueSkinを使用してGrapeCity.Win.Containers.GcTabControlをOffice2007の青の外観で描画する方法を示します。この例を実行するには、以下のコードをSystem.Windows.Forms.Formに追加し、ここで作成したメソッドをコンストラクターまたはフォーム上の別のメソッドから呼び出す必要があります。

public void CreateOffice2007BlueGcTabControl()
{
    // 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 Office2007BlueSkin to render gcTabControl.
    gcTabControl.Appearance = GrapeCity.Win.Containers.TabAppearance.Skin;
    gcTabControl.Skin = new Office2007BlueSkin();

    this.Controls.Add(gcTabControl);
}
Public Sub CreateOffice2007BlueGcTabControl()
    ' 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 Office2007BlueSkin to render gcTabControl.
    gcTabControl.Appearance = Global.GrapeCity.Win.Containers.TabAppearance.Skin
    gcTabControl.Skin = New Office2007BlueSkin()

    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.Office2007BlueSkin

プラットフォーム

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

参照

Office2007BlueSkin メンバ
GrapeCity.Win.Containers.Skins 名前空間

Send Feedback