Version

LargeImage Property (ComboEditorTool)

Returns/sets the 32x32 image to be used when the tool is sized to ImageAndTextLarge.
Syntax
'Declaration
 
Public Property LargeImage As ImageSource
public ImageSource LargeImage {get; set;}
Example
ComboEditorTool LargeImage property

' Create ComboEditorTool 
Dim comboEditorTool As New ComboEditorTool() 
comboEditorTool.Id = "comboEditor" 
comboEditorTool.LargeImage = getImageSource("/Images/icons/Ribbon/New_Large.png") 
...
'Get Image Source 
Private Function getImageSource(ByVal uriString As String) As BitmapImage 
    Dim bmpImage As New BitmapImage() 
    bmpImage.BeginInit() 
    bmpImage.UriSource = New Uri(uriString, UriKind.RelativeOrAbsolute) 
    bmpImage.EndInit() 
    Return bmpImage 
End Function
// Create ComboEditorTool
ComboEditorTool comboEditorTool = new ComboEditorTool();
comboEditorTool.Id = "comboEditor";
comboEditorTool.LargeImage = getImageSource("/Images/icons/Ribbon/New_Large.png");
...
//Get Image Source
private BitmapImage getImageSource(string uriString)
{
    BitmapImage bmpImage = new BitmapImage();
    bmpImage.BeginInit();
    bmpImage.UriSource = new Uri(uriString, UriKind.RelativeOrAbsolute);
    bmpImage.EndInit();
    return bmpImage;
}
<igRibbon:ComboEditorTool
  
Id="fontSizeCombo"
  
x:Name="fontSizeCombo"
  
IsEditable="False"
  
DropDownResizeMode="VerticalOnly" 
  
LargeImage="Images\icons\Ribbon\New_Large.png"
  
EditAreaWidth="118.0"
>
</igRibbon:ComboEditorTool>
Requirements

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

See Also