Silverlight 3 - Video Streaming ?
Bonjour,
Chose toute simple :
Je veux intégrer une video "wmv" dans ma page silverlight. J'ai donc créé un MediaElement... Seulement, rien ne s'affiche et je ne vois pas de quoi cela peux venir.
Voici mon code :
Code:
1 2 3 4 5 6 7 8
| <UserControl x:Class="MonSite.VideoDemoAccueil"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Width="400" Height="300">
<Canvas x:Name="LayoutRoot" Background="Gray">
<MediaElement Canvas.Left="0" Canvas.Top="0" Height="200" Width="200" Source="VIDEO-CT11 000000-PrésentationKB EXTERNE Client Consultation fichiers TEST.wmv"></MediaElement>
</Canvas>
</UserControl> |
Merci pour votre aide.