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

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

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

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

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

    Me.Controls.Add(gcTabControl)
End Sub
継承階層

System.Object
   GrapeCity.Win.Containers.Skins.StripSkin
      GrapeCity.Win.Containers.Skins.Skin
         GrapeCity.Win.Containers.Skins.VS2005Skin
            GrapeCity.Win.Containers.Skins.VS2008Skin

プラットフォーム

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

参照

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

Send Feedback