バージョン

SmallImage プロパティ (MaskedEditorTool)

ツールが ImageOnly または ImageAndTextNormal にサイズ設定されると使用される 16x16 画像を取得または設定します。
シンタックス
'宣言
 
Public Property SmallImage As ImageSource
public ImageSource SmallImage {get; set;}
使用例
' Create MaskedEditorTool 
Dim maskedEditorTool As New MaskedEditorTool() 
maskedEditorTool.Id = "maskedEditor" 
maskedEditorTool.SmallImage = getImageSource("/Images/icons/Ribbon/Edit.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 MaskedEditorTool
MaskedEditorTool maskedEditorTool = new MaskedEditorTool();
maskedEditorTool.Id = "maskedEditor";
maskedEditorTool.SmallImage = getImageSource("/Images/icons/Ribbon/Edit.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:MaskedEditorTool
  
Id="maskedEditor"
  
SmallImage="Images\icons\Ribbon\Edit.png"
>
</igRibbon:MaskedEditorTool>
参照