'宣言 Public ReadOnly Property Items As GalleryItemCollection
public GalleryItemCollection Items {get;}
ひとつ以上の GalleryItemGroup が Groups コレクションに追加されている場合、このコレクションに GalleryItem を追加しても GalleryTool ドロップダウンに GalleryItem は自動的に表示されません。ここで追加された GalleryItem を表示するために GalleryItemGroup の少なくともひとつの GalleryItemGroup.ItemKeys コレクションに少なくともひとつの GalleryItem のキーを追加する必要があります。
注: ここで追加された GalleryItem は、 GalleryItemGroup が Groups コレクションに追加されたかどうかに関係なく GalleryTool プレビュー領域に常に表示されます。
Imports System Imports System.Windows Imports Infragistics.Windows.Ribbon Namespace MyNamespace Public Partial Class MyWindow Inherits XamRibbonWindow Public Sub New() InitializeComponent() End Sub Protected Sub LoadGalleryTool() Dim galleryTool As New GalleryTool() menuTool.Items.Add(galleryTool) galleryTool.Groups.Clear() galleryTool.Items.Clear() Dim group As New GalleryItemGroup() group.Title = "Group" galleryTool.Groups.Add(group) For ind As Integer = 1 To 10 Dim item As New GalleryItem() item.Key = "Item" + ind.ToString() item.Text = settings.Name item.Image = New BitmapImage(New Uri("\Images\ig_office_icon_16.png", UriKind.Relative)) galleryTool.Items.Add(item) group.ItemKeys.Add(item.Key) Next 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(); } protected void LoadGalleryTool() { GalleryTool galleryTool = new GalleryTool(); menuTool.Items.Add(galleryTool); galleryTool.Groups.Clear(); galleryTool.Items.Clear(); GalleryItemGroup group = new GalleryItemGroup(); group.Title = "Group"; galleryTool.Groups.Add(group); for (int ind = 1; ind <= 10; ind++) { GalleryItem item = new GalleryItem(); item.Key = "Item" + ind.ToString(); item.Text = settings.Name; item.Image = new BitmapImage(new Uri("\\Images\\ig_office_icon_16.png", UriKind.Relative)); galleryTool.Items.Add(item); group.ItemKeys.Add(item.Key); } } } }