Click here to Skip to main content
15,892,643 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
Hi,

How I can show multiple videos at a time in WPF

Regards,
Satyendra
Posted
Comments
Sergey Alexandrovich Kryukov 23-Jul-11 1:18am    
Stop re-posting! Use "Improve question", write comments to answers.
--SA

1 solution

Use multiple MediaElements (or whatever element you are using to show videos)?

<StackPanel Orientation="Vertical" >
    <MediaElement Height="150" Source="Media/somemovie.mov" Stretch="Uniform" />
    <MediaElement Height="150" Source="Media/someothermovie.mov" Stretch="Uniform" />
</StackPanel>
 
Share this answer
 
v2
Comments
Sergey Alexandrovich Kryukov 23-Jul-11 0:54am    
Never tried but I think it should work, to certain extent. I wonder why. My 5.
--SA
Mark Salsbery 23-Jul-11 0:56am    
I rarely post code I don't test first....this was no exception. Works fine.

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900