GrapeCity.Win.Containers.Skins 名前空間 : VS2008Skin クラス |
Public Class VS2008Skin Inherits VS2005Skin
public class VS2008Skin : VS2005Skin
次のサンプルコードは、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