'宣言 Public Class GalleryItem Inherits Infragistics.DependencyObjectNotifier
public class GalleryItem : Infragistics.DependencyObjectNotifier
GalleryItems は GalleryTool プレビュー領域と GalleryTool ドロップダウンの両方に表示できますが、GalleryItems が表示できるのは GalleryTool ドロップダウン内の指定された GalleryItemGroup 内だけです。GalleryTool プレビュー領域には GalleryItemGroup を決して表示しないからです。デフォルトで、GalleryTool には GalleryItemGroup が含まれません。このため、デフォルトで GalleryItems はドロップダウン領域の GalleryItemGroup 内に表示しません。ドロップダウンの GalleryItemGroup に GalleryItem を表示するには、GalleryItem を表示したい GalleryItemGroup ごとに GalleryItem の Key 値を GalleryItemGroup.ItemKeys コレクションに追加する必要があります。
注: 複数の GalleryItemGroup に GalleryItems を指定してもかまいません。この場合、GalleryTool ドロップダウンの複数の GalleryItemGroup に表示します。ただし、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); } } } }