'宣言 Public Class GalleryItemGroup Inherits System.Windows.Controls.ItemsControl
public class GalleryItemGroup : System.Windows.Controls.ItemsControl
GalleryTool.Groups コレクションに GalleryItemGroup を追加すると、少なくとも 1 つの GalleryItem のキーを GalleryItemGroup の ItemKeys コレクションに追加しない限り、GalleryTool ドロップダウンに GalleryItem が表示されなくなります。
注: GalleryItemGroup が GalleryTool.Groups コレクションに追加されたら、GalleryItem が表示される Group の ItemKeys コレクションに を追加することによって、Key に指定されない限り、GalleryTool は、GalleryTool ドロップダウンに GalleryItem を表示しません。
注:GalleryItemGroup はプレビュー領域に表示されないので、GalleryItemGroup を GalleryTool.Groups コレクションに追加しても 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) Dim group1 As New GalleryItemGroup() group1.Title = "Group1" Dim group2 As New GalleryItemGroup() group2.Title = "Group2" Dim group3 As New GalleryItemGroup() group3.Title = "Group3" galleryTool.Groups.Add(group1) galleryTool.Groups.Add(group2) galleryTool.Groups.Add(group3) 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) If ind < 7 Then group1.ItemKeys.Add(Item.Key) Else group2.ItemKeys.Add(Item.Key) End If group3.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); GalleryItemGroup group1 = new GalleryItemGroup(); group1.Title = "Group1"; GalleryItemGroup group2 = new GalleryItemGroup(); group2.Title = "Group2"; GalleryItemGroup group3 = new GalleryItemGroup(); group3.Title = "Group3"; galleryTool.Groups.Add(group1); galleryTool.Groups.Add(group2); galleryTool.Groups.Add(group3); 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); if(ind < 7) { group1.ItemKeys.Add(Item.Key); } else { group2.ItemKeys.Add(Item.Key); } group3.ItemKeys.Add(item.Key); } } } }