Author: Brad Abrams | Posted on: 6/19/2008 6:53:28 AM | Views : 735

I had a little time while traveling to South Africa so I thought I'd update my Silverlight FlickR demo to Beta2.    Download the full solution read the full writeup   (note: in the application, you can click on the image to advance to the next one)   Overall, the changes were pretty minor, the most  interesting one was a change in the way Isolated Storage is accessed.   I set up a page level variable called appsettings: IsolatedStorageSettings appSettings = IsolatedStorageSettings .ApplicationSettings;   Then, when the page is loaded, I initialized based on it. public Page() { InitializeComponent(); if (appSettings.Contains( "searchTerm" )) { this .searchTermTextBox.Text = ( string )appSettings...(read more) ...

Go to the complete details ...