Search code examples
silverlightmediaelementdeepzoom

Silverlight MediaElement Cloud


Doe anybody know where i can get a sample silvelight mediaelement cloud similar to mojaveexperiment.com?


Solution

  • Answer and source code example here here

    and in code:instead of

        Uri collectionUri;
            if (Uri.TryCreate(App.Current.Host.Source, "/Collection/items.bin", out collectionUri))
                image.Source = collectionUri;
    

    have

       Uri collectionUri;
            if (Uri.TryCreate(App.Current.Host.Source, "/Collection/items.bin", out collectionUri))
                msi.Source = new DeepZoomImageTileSource(collectionUri);
    

    Found a thread that related to same question here