PowerTools InputMan for Windows Forms 8.0J
ShowOverflowTip プロパティ (GcListBox)
使用例 

リスト項目およびサブ項目を表示しきれないとき、オーバーフローチップを表示するか、しないかを取得または設定します。
構文
Public Property ShowOverflowTip As Boolean
public bool ShowOverflowTip {get; set;}

プロパティ値

説明
True オーバーフローチップを表示します。
False オーバーフローチップを表示しません。
既定値はFalseです。
解説
このプロパティがtrueの場合に、項目のテキストが列の幅より長いとき、項目の上にマウスを置くとツールチップが表示されます。
使用例
ステータスバー、オーバーフローチップ、そしてツールチップを設定した GcListBox コントロールを作成するコード例を次に示します。この例では他に DescriptionFormatDescriptionSubItemIndexStatusBar、 ShowOverflowTip、そして ShowItemTip プロパティを使用しています。
//  Please use the following namespace
//  using System.Windows.Forms;
//  using GrapeCity.Win.Editors;

public void SetStatusBarAndTipSettings()
{
    // Creates the GcListBox control.
    GcListBox gcListBox1 = new GcListBox();
    
    // Sets the string format of the StatusBar.Text.
    gcListBox1.DescriptionFormat = "[0] + [1]";

    // Sets the DescriptionSubItemIndex for displaying the value of the subitem as statusbar's text.
    gcListBox1.DescriptionSubItemIndex = 1;

    // Shows the statusbar.
    gcListBox1.StatusBar.Visible = true;
    // Shows the OverflowTip on each sub item.
    gcListBox1.ShowOverflowTip = true;
    // Shows ToolTip for each item when mouse move to it.
    gcListBox1.ShowItemTip = true;
}
'  Please use the following namespace
'  Imports System.Windows.Forms;
'  Imports GrapeCity.Win.Editors;

Public Sub SetStatusBarAndTipSettings()
    ' Creates the GcListBox control.
    Dim gcListBox1 As New GcListBox()

    ' Sets the string format of the StatusBar.Text.
    gcListBox1.DescriptionFormat = "[0] + [1]"

    ' Sets the DescriptionSubItemIndex for displaying the value of the subitem as statusbar's text.
    gcListBox1.DescriptionSubItemIndex = 1

    ' Shows the statusbar.
    gcListBox1.StatusBar.Visible = True
    ' Shows the OverflowTip on each sub item.
    gcListBox1.ShowOverflowTip = True
    ' Shows ToolTip for each item when mouse move to it.
    gcListBox1.ShowItemTip = True
End Sub
参照

GcListBox クラス
GcListBox メンバ
ShowItemTip プロパティ

 

 


© 2004-2015 GrapeCity inc. All rights reserved.