Version

ImageResolved Property (MaskedEditorTool)

Returns the image to be used by the tool based on its current location and sizing mode.
Syntax
'Declaration
 
Public ReadOnly Property ImageResolved As ImageSource
public ImageSource ImageResolved {get;}
Example
MaskedEditorTool ImageResolved

' Create MaskedEditorTool 
Dim maskedEditorTool As New MaskedEditorTool() 
maskedEditorTool.Id = "maskedEditor" 
maskedEditorTool.Caption = "maskedEditor" 
maskedEditorTool.KeyTip = "ME" 
maskedEditorTool.LargeImage = getImageSource("/Images/icons/Ribbon/New_Large.png") 
maskedEditorTool.SmallImage = getImageSource("/Images/icons/Ribbon/EditCopy.png") 

' Add to QAT 
xamRibbon.QuickAccessToolbar.Items.Add(New QatPlaceholderTool("maskedEditor", QatPlaceholderToolType.Tool)) 

Debug.Write("maskedEditorTool.ImageResolved" + maskedEditorTool.ImageResolved) 
...
'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.Caption = "maskedEditor";
maskedEditorTool.KeyTip = "TE";
maskedEditorTool.LargeImage = getImageSource("/Images/icons/Ribbon/New_Large.png");
maskedEditorTool.SmallImage = getImageSource("/Images/icons/Ribbon/EditCopy.png");

// Add to QAT
xamRibbon.QuickAccessToolbar.Items.Add(new QatPlaceholderTool("maskedEditor", QatPlaceholderToolType.Tool));

Debug.Write("maskedEditorTool.ImageResolved" + maskedEditorTool.ImageResolved);
...
//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;
}
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