Share via


Source Code: Hosting Silverlight Pivot in Windows Azure

You can download this full VS2010 Solution and open in VS2010 admin mode. 

Edit MainPage.xaml.cs and enable to following line so you can use my prebuilt Pivot in your Code and then just press F5 to test sample in compute emulator:

private static readonly Uri s_GalaxiesCollectionUri = new Uri("https://galaxiespivot.cloudapp.net/ClientBin/galaxies.cxml");
public MainPage()
{
InitializeComponent();
pivotWidgets.LoadCollection(s_GalaxiesCollectionUri.ToString(), string.Empty);
}

The VS2010 Solution looks like as below:

 

Download the source code from: https://pivotviewerinazure.codeplex.com/

Comments

  • Anonymous
    April 22, 2011
    Cool. You saved me lots of time with this sample. I was trying to get my pivot working in compute emulator with no success. You sample saved me lots of time. If you wrote it one week back, I will have 1 more week in my life. Do you know how to host cxml and associated files in Azure Storage? Thank you for the the sample code.

  • Anonymous
    May 11, 2011
    Thanks, I am glad you found it useful!!