'宣言 Public ReadOnly Property Groups As ObservableCollection(Of GalleryItemGroup)
public ObservableCollection<GalleryItemGroup> Groups {get;}
このコレクションに GalleryItemGroup を追加すると、少なくとも1 つの GalleryItem のキーを GalleryItemGroup の GalleryItemGroup.ItemKeys コレクションに追加しない限り、GalleryTool ドロップダウンに GalleryItem が表示されなくなります。
注:GalleryItemGroup がこのコレクションに追加されたら、GalleryItem が表示される Group の GalleryItemGroup.ItemKeys コレクションに Key を追加することによって、GalleryItemGroup に指定されない限り、GalleryTool は、GalleryTool ドロップダウンに GalleryItem を表示しません。
注:GalleryItemGroup はプレビュー領域に表示されないので、GalleryItemGroup をこのコレクションに追加しても GalleryTool プレビュー領域の GalleryItem の表示に影響を及ぼしません。
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); } } } }