开发者

What is an "island of richness"?

I'm looking on how to incorporate silverlight in my existing application and I keep running into the latest buzz-phrase "island o开发者_JAVA技巧f richness". What does it mean?

Thanks!


An island of richness is a (relatively) small area of rich, dynamic content (e.g. Silverlight, Flash, or heavy AJAX) on a page which is mostly regular HTML. It's as opposed to a page whose entire content is Silverlight-enabled.

So basically, it's when the page contains some Silverlight content, but that isn't the only content in the page.


It simply means that rather than having an entire webpage/site as a Silverlight application, you have small Silverlight apps for specific usage. Such as a media player, chat window, etc.


It means the content delivered by the Silverlight plugin is an island of rich user interface in a sea of less rich HTML.

If you take YouTube as an example (although it uses flash rather than silverlight) the video player is the "island of richness" in the rest of the page which is all HTML.


It means that you're hosting a silverlight plugin within an aspx page (or html/whatever). The plugin being the island of richness.

<html>
    <head>
    </head>
    <body>
        <form id="form1" runat="server" style="height:100%">
        <h1>Sample Text </h1>
        <div>Other Non-Rich Content</div>
        <div id="silverlightControlHost">
            <!-- Begin Island of Richness -->
            <object data="data:application/x-silverlight-2," type="application/x-silverlight-2" width="100%" height="100%">
              <param name="source" value="../Common/silverlightbin/Granite.EHR.ImmunizationAdmin.xap"/>
              <param name="onError" value="onSilverlightError" />
              <param name="background" value="#D7D7D7" />
              <param name="minRuntimeVersion" value="4.0.50826.0" />
              <param name="autoUpgrade" value="true" />
              <param name="initparams" value="control=Admin" />
              <a href="http://go.microsoft.com/fwlink/?LinkID=149156&v=4.0.50826.0" style="text-decoration:none">
                  <img src="http://go.microsoft.com/fwlink/?LinkId=161376" alt="Get Microsoft Silverlight" style="border-style:none"/>
              </a>
            </object><iframe id="_sl_historyFrame" style="visibility:hidden;height:0px;width:0px;border:0px"></iframe></div>
            <!-- END Island of Richness -->
        </form>
    </body>
</html>
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜