PowerTools PlusPak for Windows Forms 8.0J
FlatStyle プロパティ (GcTrackBar)
使用例 

コントロールのフラットスタイルの外観を取得または設定します。
構文
Public Overrides Property FlatStyle As FlatStyleEx
public override FlatStyleEx FlatStyle {get; set;}

プロパティ値

GrapeCity.Win.Common.FlatStyleEx 値の 1 つ。デフォルト値は Standard です。
例外
例外解説
System.ComponentModel.InvalidEnumArgumentException指定された値が GrapeCity.Win.Common.FlatStyleEx 値の 1 つではありません。
解説
GrapeCity.Win.Common.PlusPakControlBase.FlatStyle プロパティが GrapeCity.Win.Common.FlatStyleEx.System に設定されている場合、そのコントロールはユーザーのオペレーティングシステムによって描画されます。
使用例

次のサンプルコードは、GcTrackBar コントロールを含むフォームを表示し、FlatStyle プロパティを設定する例を示します。このサンプルを実行するには、以下のコードをフォームに貼り付けて、フォームのコンストラクターまたは System.Windows.Forms.Form.Load イベント処理メソッドから CreateGcTrackBarWithOfficeStyle メソッドを呼び出します。

private void CreateGcTrackBarWithOfficeStyle()
{
    // Create a instance of GcTrackBar.
    GrapeCity.Win.Bars.GcTrackBar gcTrackBar1 = new GrapeCity.Win.Bars.GcTrackBar();

    // Initialize the Name, Location and Size of GcTrackBar
    gcTrackBar1.Name = "gcTrackBar1";
    gcTrackBar1.Location = new System.Drawing.Point(8, 8);
    gcTrackBar1.Size = new System.Drawing.Size(224, 45);

    // Add the second Thumb to the Thumbs of GcTrackBar
    GrapeCity.Win.Bars.Thumb thumb1 = new GrapeCity.Win.Bars.Thumb();
    thumb1.ToolTip = "#0cm";
    gcTrackBar1.Thumbs.Add(thumb1);

    // Customize the control appearance by setting FlatStyle property.
    gcTrackBar1.FlatStyle = GrapeCity.Win.Common.FlatStyleEx.Office2007Blue;

    // Add gcTrackBar1 to the form
    this.Controls.Add(gcTrackBar1);
}
Private Sub CreateGcTrackBarWithOfficeStyle()
    ' Create a instance of GcTrackBar.
    Dim gcTrackBar1 As New GcTrackBar()

    ' Initialize the Name, Location and Size of GcTrackBar
    gcTrackBar1.Name = "gcTrackBar1"
    gcTrackBar1.Location = New System.Drawing.Point(8, 8)
    gcTrackBar1.Size = New System.Drawing.Size(224, 45)

    ' Add the second Thumb to the Thumbs of GcTrackBar
    Dim thumb1 As New Thumb()
    thumb1.ToolTip = "#0cm"
    gcTrackBar1.Thumbs.Add(thumb1)

    ' Customize the control appearance by setting FlatStyle property.
    gcTrackBar1.FlatStyle = Global.GrapeCity.Win.Common.FlatStyleEx.Office2007Blue

    ' Add gcTrackBar1 to the form
    Me.Controls.Add(gcTrackBar1)
End Sub
プラットフォーム

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

参照

GcTrackBar クラス
GcTrackBar メンバ
FlatStyleEx 列挙体

Send Feedback