Skip to main content
Home Forums General Silverlight Hosting and Streaming I would like to create the same silverlight application
3 replies. Latest Post by msalsbery on October 30, 2009.
(0)
banderas...
Member
9 points
56 Posts
10-29-2009 6:35 PM |
Hello everyone thank you for your supposrt you helped a lot. I have a silverlight application http://vircas.toson.net/ that I want to do the same thing http://theindieshow.vircas.com/ now I already created the page now I want when I click one the picture it plays the shows me the same media player style. Iw ould like to ask is it the video player set in the background of the xaml. Can you help me please thank you
msalsbery
Participant
1942 points
358 Posts
10-30-2009 7:18 PM |
banderastyle28:Iw ould like to ask is it the video player set in the background of the xaml.
Are you referring to the layout of the elements?
If so, it looks something like this:
<Grid x:Name="LayoutRoot" Background="Black" > <Image Source="Images/mybackgroundimage.png" Stretch="None" HorizontalAlignment="Center" VerticalAlignment="Center" /> <Border Width="400" Height="250" BorderBrush="Orange" BorderThickness="8" Background="DarkGray" HorizontalAlignment="Center" VerticalAlignment="Center" > <TextBlock Text="Media Player Goes Here!" Foreground="White" FontSize="25" FontWeight="Bold" HorizontalAlignment="Center" VerticalAlignment="Center" /> </Border> </Grid>
You could wrap the border in another element to get the other decorative images around the media element. The main point is - the Border floats "on top" of the background Image since they are both in the same grid cell.
Nice pages - I like the quality multimedia :)
10-30-2009 8:08 PM |
Thank you man for your advice and thank you for your compliment.
Dont you think it is a media player set with pictures
10-30-2009 8:21 PM |
banderastyle28:Dont you think it is a media player set with pictures
At the second link? The first page is just anchor tags with images/links. Clicking on the image brings up another page with a media player in the center. I was referring to the page with the media player on it, since I wasn't sure what part you were asking about.
Which part were you asking about?
MArk