バージョン

LargeImage プロパティ (TextEditorTool)

ツールが ImageAndTextLarge にサイズ設定されると使用される 32x32 画像を返す/設定します。
シンタックス
'宣言
 
Public Property LargeImage As ImageSource
public ImageSource LargeImage {get; set;}
使用例
' Create TextEditorTool 
Dim textEditorTool As New TextEditorTool() 
textEditorTool.Id = "textEditor" 
textEditorTool.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 TextEditorTool
TextEditorTool textEditorTool = new TextEditorTool();
textEditorTool.Id = "textEditor";
textEditorTool.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:TextEditorTool
  
Id="textEditor"
  
LargeImage="Images\icons\Ribbon\New_Large.png"
>
</igRibbon:TextEditorTool>
参照