RibbonCheckBox.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 how to set the SmallImageSource property on a RibbonCheckBox.

<ribbon:RibbonCheckBox Label="Reminder"                                    
                       SmallImageSource="Images/Reminder16.png" 
                       LargeImageSource="Images/Reminder32.png" 
                       KeyTip="R"/>

.NET Framework Security

See Also

Reference

RibbonCheckBox Class

Microsoft.Windows.Controls.Ribbon Namespace

Other Resources

Ribbon Layout and Resizing