PowerTools PlusPak for Windows Forms 8.0J
ShowToolTip プロパティ
使用例 

スライダーのツールチップを表示するかどうかを示す値を取得または設定します。
構文
Public Property ShowToolTip As Boolean
public bool ShowToolTip {get; set;}

プロパティ値

ツールチップを表示する場合は true。それ以外の場合は false。デフォルト値は true です。
解説
ある特定の Thumb のツールチップをカスタマイズするには、ToolTip プロパティを設定します。
使用例

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

private void CreateGcTrackBarWithThumbToolTip()
{
    // 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);

    // Setting tool tip for the default thumb.
    GrapeCity.Win.Bars.Thumb thumb1 = gcTrackBar1.Thumbs[0];
    thumb1.ToolTip = "#0cm";

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

    // Tick mark and tick text will be located on the both sides of track bar.
    gcTrackBar1.TickStyle = TickStyle.Both;
    gcTrackBar1.TickTextStyle = TickStyle.Both;

    // Add gcTrackBar1 to the form
    this.Controls.Add(gcTrackBar1);
}
Private Sub CreateGcTrackBarWithThumbToolTip()
    ' 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)

    ' Setting tool tip for the default thumb.
    Dim thumb1 As Thumb = gcTrackBar1.Thumbs(0)
    thumb1.ToolTip = "#0cm"

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

    ' Tick mark and tick text will be located on the both sides of track bar.
    gcTrackBar1.TickStyle = TickStyle.Both
    gcTrackBar1.TickTextStyle = TickStyle.Both

    ' 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 メンバ

Send Feedback