Description
This class emulates the System.Windows.Controls.Image class. It is rendered as a HTML <img /> tag.
See also http://tech.teradp.com/tech/html/gn4/docs/VSdoc/frlrfTeraDPGN4WebUIWpfEmulationImageClassTopic.html
Namespace
xmlns:l="http://www.teradp.com/schemas/GN4/1/Shell/Presentation"
Members
For the list of properties and methods, see:
Example
<CellTemplate ObjectTypeName="image">
<xp:StackPanel Orientation="Vertical" HorizontalAlignment="Center" Margin="0,1,0,1">
<l:InfoPopup InfoId="{Binding Path=[folderObject.id]}" DirectoryStyleName="{Binding ObjectType.Name}">
<l:Image MaxHeight="90" MaxWidth="90"
ImageId="{Binding Path=[image.thumbnail.id]}"
Rotation="{Binding Path=[image.rotation]}"
PixWidth="{Binding Path=[image.pixWidth]}"
PixHeight="{Binding Path=[image.pixHeight]}"
Crops="{Binding Path=[image.crops]}"
/>
</l:InfoPopup>
</xp:StackPanel>
</CellTemplate>
See also