Private Sub CustomizeToolCaptionsintheRunTimeCustomizer_Load(ByVal sender As System.Object, _ ByVal e As System.EventArgs) Handles MyBase.Load Me.UltraToolbarsManager1.Toolbars(0).Tools(0).SharedProps.CustomizerCaption = "New Caption" End Sub
ランタイムに、ユーザーはツールバー上のツールに対してショートカットキーの設定やツールの説明の表示などのカスタマイズを行うことができます。CustomizerCaption プロパティは、[ユーザー設定] ダイアログの [コマンド] リストに表示される文字列を取得または設定します。
ツールのキャプションをデザインタイムにカスタマイズするには:
エディタの [ツール] タブでツールを選択し、SharedProps の下で CustmizerCaption プロパティを設定します。
ツールのキャプションをランタイムにカスタマイズするには:
Visual Basic の場合:
Private Sub CustomizeToolCaptionsintheRunTimeCustomizer_Load(ByVal sender As System.Object, _ ByVal e As System.EventArgs) Handles MyBase.Load Me.UltraToolbarsManager1.Toolbars(0).Tools(0).SharedProps.CustomizerCaption = "New Caption" End Sub
C# の場合:
private void CustomizeToolCaptionsintheRunTimeCustomizer_Load(object sender, System.EventArgs e) { this.ultraToolbarsManager1.Toolbars[0].Tools[0].SharedProps.CustomizerCaption = "New Caption"; }