RibbonToggleButton.LargeImageSource Property

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

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

Syntax

'Declaration
Public Property LargeImageSource As ImageSource
public ImageSource LargeImageSource { get; set; }
public:
property ImageSource^ LargeImageSource {
    ImageSource^ get ();
    void set (ImageSource^ value);
}
member LargeImageSource : ImageSource with get, set
function get LargeImageSource () : ImageSource
function set LargeImageSource (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

LargeImageSourceProperty

Metadata properties set to true

None

Remarks

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

Examples

The following example shows how to set the LargeImageSource property for a RibbonToggleButton.

<ribbon:RibbonToggleButton Label="Reminder"
                      Command="{Binding ReminderCommand}"
                      SmallImageSource="Images/Reminder16.png" 
                      LargeImageSource="Images/Reminder32.png"
                      KeyTip="R"/>

.NET Framework Security

See Also

Reference

RibbonToggleButton Class

Microsoft.Windows.Controls.Ribbon Namespace

Other Resources

Ribbon Layout and Resizing