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

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

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

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

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

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

プラットフォーム

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

参照

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

Send Feedback