PowerTools InputMan for Windows Forms 8.0J
DescriptionFormat プロパティ
使用例 

StatusBarに表示される説明のカスタマイズに使用される書式文字列を取得または設定します。
構文
Public Property DescriptionFormat As String
public string DescriptionFormat {get; set;}

プロパティ値

StatusBarに表示される説明のカスタマイズに使用される書式文字列を示すstring値。
既定値はSystem.String.Emptyです。
例外
例外解説
System.ArgumentException valueが有効なDescriptionFormatではありません。
解説
このプロパティを使用すると、このコントロールの説明の表示書式をカスタマイズできます。
使用例
ステータスバー、オーバーフローチップ、そしてツールチップを設定した GcListBox コントロールを作成するコード例を次に示します。この例では他に DescriptionFormat、 DescriptionSubItemIndexStatusBarShowOverflowTip、そして 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 メンバ
DescriptionSubItemIndex プロパティ

 

 


© 2004-2015 GrapeCity inc. All rights reserved.