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

ツールバーに適用する描画スタイルを取得または設定します。
構文
Public Property ToolBarRenderMode As ToolStripRenderMode
public ToolStripRenderMode ToolBarRenderMode {get; set;}

プロパティ値

描画モードを表すToolStripRenderMode列挙体。 既定値はManagerRenderModeです。
解説
ToolBarRenderMode プロパティは、ツールバーの描画スタイルを取得または設定する場合に使用します。
使用例
ツールバーを設定した GcRichTextBox コントロールを作成するコード例を次に示します。この例では他に ToolBarAllowToolTipsToolBarCanOverFlowToolBarDockPosition そして 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.