Question

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

Was it helpful?

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

OTHER TIPS

MojaveExperiment used Vertigo BigPicture

The company site is here

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top