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

ツールバーにツールチップを表示するか、しないかを取得または設定します。
構文
Public Property ToolBarAllowToolTips As Boolean
public bool ToolBarAllowToolTips {get; set;}

プロパティ値

説明
True ツールチップを表示します。
False ツールチップを表示しません。
既定値はTrueです。
解説
ツールバーのツールチップには、ツールバー項目に関する説明が含まれます。
使用例
ツールバーを設定した GcRichTextBox コントロールを作成するコード例を次に示します。この例では他に ToolBarAllowToolTips、 ToolBarCanOverFlowToolBarDockPosition そして ToolBarRenderMode プロパティを使用しています。
//  Please use the following namespace
//  using System.Windows.Forms;
//  using GrapeCity.Win.Editors;

public void InitializeGcRichTextBox()
{
    // Creates an instance of a GcRichTextBox control.
    GcRichTextBox gcRichTextBox1 = new GcRichTextBox();

    // Sets the ToolBarAllowToolTips to true for displaying the tool tips when mouse hovers over the toolbar items.
    gcRichTextBox1.ToolBarAllowToolTips = true;
    // Sets the ToolBarCanOverFlow to true. The toolbar will show the overflow button.
    gcRichTextBox1.ToolBarCanOverFlow = true;
    // Sets the toolbar docked to the top of the GcRichTextBox.
    gcRichTextBox1.ToolBarDockPosition = ToolBarDockPositionStyle.Top;
    // Sets the ToolBarRenderMode to System, the toolbar will display according current OS system.
    gcRichTextBox1.ToolBarRenderMode = ToolStripRenderMode.System;
}
'  Please use the following namespace
'  Imports System.Windows.Forms;
'  Imports GrapeCity.Win.Editors;

Public Sub InitializeGcRichTextBox()
    ' Creates an instance of a GcRichTextBox control.
    Dim gcRichTextBox1 As New GcRichTextBox()

    ' Sets the ToolBarAllowToolTips to true for displaying the tool tips when mouse hovers over the toolbar items.
    gcRichTextBox1.ToolBarAllowToolTips = True
    ' Sets the ToolBarCanOverFlow to true. The toolbar will show the overflow button.
    gcRichTextBox1.ToolBarCanOverFlow = True
    ' Sets the toolbar docked to the top of the GcRichTextBox.
    gcRichTextBox1.ToolBarDockPosition = ToolBarDockPositionStyle.Top
    ' Sets the ToolBarRenderMode to System, the toolbar will display according current OS system.
    gcRichTextBox1.ToolBarRenderMode = ToolStripRenderMode.System
End Sub
参照

GcRichTextBox クラス
GcRichTextBox メンバ

 

 


© 2004-2015 GrapeCity inc. All rights reserved.