Imports System Imports System.Windows Imports Infragistics.Windows.Ribbon Namespace MyNamespace Public Partial Class MyWindow Inherits XamRibbonWindow Public Sub New() InitializeComponent() End Sub Private Sub CheckGalleryTool() ' Has Image If galleryTool.HasImage Then ' do something if gallery has image Else ' do something else End If 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(); } private void CheckGalleryTool() { // Has Image if (galleryTool.HasImage) { // do something if gallery has image } else { // do something else } } } }