'Declaration Public Property Settings As GalleryItemSettings
public GalleryItemSettings Settings {get; set;}
The various property values in the GalleryItemSettings specified at the GalleryTool level (via the GalleryTool.ItemSettings property) serve as the ultimate defaults for all GalleryItems. These values can be overridden at two lower levels:
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 setting As New GalleryItemSettings() setting.TextDisplayMode = GalleryItemTextDisplayMode.Always Dim item As New GalleryItem() item.Key = "Item1" item.Text = "First Item" item.Image = New BitmapImage(New Uri("\Images\ig_office_icon_16.png", UriKind.Relative)) item.Tag = "myTag" item.Settings = settings .... galleryTool.Items.Add(item) 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() { GalleryItemSettings setting = new GalleryItemSettings(); setting.TextDisplayMode = GalleryItemTextDisplayMode.Always; GalleryItem item = new GalleryItem(); item.Key = "Item1"; item.Text = "First Item"; item.Image = new BitmapImage(new Uri("\\Images\\ig_office_icon_16.png", UriKind.Relative)); item.Tag = "myTag"; item.Settings = settings; ..... galleryTool.Items.Add(item); } } }
Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2