Description
Renders a video DataContent attribute as a flash player control. The eventual video thumbnail and the video itself must be provided through the parameters ThumbnailId and VideoId. The flash player can be configured through the parameter Parameters.
Namespace
xmlns:l="http://www.teradp.com/schemas/GN4/1/Shell/Presentation"
Members
For the list of properties and methods, see:
Example
<l:Video
Grid.Row="1"
HorizontalAlignment="Center"
MaxHeight="120"
MaxWidth="160"
Margin="5,5,5,5"
ThumbnailId="{Binding Path=[video.preview.id]}"
VideoId="{Binding Path=[video.videoPreview.id]}"
Parameters="autostart=false&fullscreen=false"
>
More examples
<l:Video
MaxHeight="90"
MaxWidth="90"
VideoId="{Binding Path=[video.videoPreview.id]}"
ThumbnailId="{Binding Path=[video.thumbnail.id]}"
Parameters="autostart=false&fullscreen=false&skin=simple.swf"
/>
<l:Video
Width="250"
Height="150"
ThumbnailId="{Binding Path=[video.thumbnail.id]}"
VideoId="{Binding Path=[video.videoPreview.id]}"/>
See also