Click here to Skip to main content
15,888,610 members
Articles / Silverlight

Is Silverlight Eating Adobe's Bread and Butter?

Rate me:
Please Sign up or sign in to vote.
4.50/5 (4 votes)
6 May 2010CPOL 11.1K   2   2
Is Silverlight eating Adobe's bread and butter?

[DISCLAIMER] Before I start, I have to state that this is only my opinion!!!

With the disclaimer out of the way, a large percentage of the websites out there that utilize Flash use it as islands of richness. This is where a portion of  the screen uses flash to do things like show different marketing “slides” or videos. I KNOW there is more to Flash than just these two scenarios, but this is what I mostly find (in my opinion). I think Silverlight makes both these scenarios extremely easy to implement!!!

Let's take the Skin It to Win it competition hosted by SlideDeck as a example…

[DISCLAIMER] I know jQuery also allows this… (Take SlideDeck as a example.)

If I wanted to implement a SlideDeck in Silverlight? Why not use the Accordian (available in the Toolkit)?

Here is the code:

XML
<layout:Accordion ExpandDirection="Right">
    <layout:AccordionItem Header="Item #1">
        <Image Source="Pages/Page1.png" />
    </layout:AccordionItem>
    <layout:AccordionItem Header="Item #2">
        <Image Source="Pages/Page2.png" />
    </layout:AccordionItem>
    <layout:AccordionItem Header="Item #3">
        <Image Source="Pages/Page3.png" />
    </layout:AccordionItem>
    <layout:AccordionItem Header="Item #4">
        <Image Source="Pages/Page4.png" />
    </layout:AccordionItem>
    <layout:AccordionItem Header="Item #5">
        <Image Source="Pages/Page5.png" />
    </layout:AccordionItem>
</layout:Accordion>

And this is how it looks:

That’s cool, what about video?

Video is JUST AS EASY in Silverlight… For more information, read Create your own Hulu.com.

You can find the source here.

License

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


Written By
South Africa South Africa
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
GeneralMy vote of 1 Pin
David Mackey27-May-10 11:43
professionalDavid Mackey27-May-10 11:43 
GeneralI love Silverlight! Pin
Alan Beasley6-May-10 5:49
Alan Beasley6-May-10 5:49 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.