バージョン

Caption プロパティ (GalleryTool)

ツールに関連付けられたキャプションを取得または設定します。
シンタックス
'宣言
 
Public Property Caption As String
public string Caption {get; set;}
使用例
Imports System
Imports System.Windows
Imports Infragistics.Windows.Ribbon


Namespace MyNamespace
    Public Partial Class MyWindow
        Inherits XamRibbonWindow
        Public Sub New()
            InitializeComponent()
        End Sub
       
        Private Sub SetupGalleryTool()
           galleryTool.Caption = "Gallery tool caption"
        End Sub
    End Class
End Namespace
using System;
using System.Windows;
using Infragistics.Windows.Ribbon;


namespace MyNamespace
{
    public partial class MyWindow : XamRibbonWindow
    {
        public MyWindow()
        {
            InitializeComponent();
        }

        private void SetupGalleryTool()
        {
            galleryTool.Caption  = "Gallery tool caption";
        }
    }
}
<igRibbon:XamRibbonWindow x:Class="SnippetApp.Window1"
    
xmlns:igRibbon="http://infragistics.com/Ribbon">

    ....

    
<igRibbon:GalleryTool Name="galleryTool" Caption="Gallery tool caption"/>

    ....

</igRibbon:XamRibbonWindow>
参照