RibbonMenuButton.SmallImageSource Property

Gets or sets the image that is displayed on the control when the image size is set to Small.

Namespace:  Microsoft.Windows.Controls.Ribbon
Assembly:  RibbonControlsLibrary (in RibbonControlsLibrary.dll)

Syntax

'Declaration
Public Property SmallImageSource As ImageSource
public ImageSource SmallImageSource { get; set; }
public:
property ImageSource^ SmallImageSource {
    ImageSource^ get ();
    void set (ImageSource^ value);
}
member SmallImageSource : ImageSource with get, set
function get SmallImageSource () : ImageSource
function set SmallImageSource (value : ImageSource)

Property Value

Type: System.Windows.Media.ImageSource
The image to display on the control. The registered default is nulla null reference (Nothing in Visual Basic). For more information about what can influence the value, see Dependency Property Value Precedence.

Dependency Property Information

Identifier field

SmallImageSourceProperty

Metadata properties set to true

None

Remarks

Set the ImageSize property on the ControlSizeDefinition to control the visibility of the SmallImageSource.

Examples

The following example shows the markup to create a menu button with three available items.

<ribbon:RibbonMenuButton Label="Color 1" 
                         SmallImageSource="Images/RightArrowShort_Green16.png" 
                         LargeImageSource="Images/RightArrowShort_Green32.png" >
    <ribbon:RibbonGallery SelectedValue="Green"
                          SelectedValuePath="Content"
                          MaxColumnCount="1">
        <ribbon:RibbonGalleryCategory>
            <ribbon:RibbonGalleryItem Content="Green" Foreground="Green" />
            <ribbon:RibbonGalleryItem Content="Blue" Foreground="Blue" />
            <ribbon:RibbonGalleryItem Content="Orange" Foreground="Orange" />
        </ribbon:RibbonGalleryCategory>
    </ribbon:RibbonGallery>
</ribbon:RibbonMenuButton>

.NET Framework Security

See Also

Reference

RibbonMenuButton Class

Microsoft.Windows.Controls.Ribbon Namespace

Other Resources

Ribbon Layout and Resizing