Click here to Skip to main content
15,897,519 members

Comments by Member 11526508 (Top 3 by date)

Member 11526508 13-May-15 17:21pm View    
Thanks guys.. But any answer to my question? I could really use some help here..
Member 11526508 13-May-15 15:01pm View    
Omit the Nick guys! That was an error :)
Member 11526508 29-Mar-15 2:08am View    
FYI, I tried to implement the local storage by putting

Windows.Storage.ApplicationDataContainer localsetting = Windows.Storage.ApplicationData.Current.LocalSettings;
lstv_countries.SelectedItem = localsetting.Values["Countries"].ToString();

in the ItemsSelection event of the ListView (Page2) and then

Windows.Storage.ApplicationDataContainer localsetting = Windows.Storage.ApplicationData.Current.LocalSettings;
localsetting.Values["Countries"] = testText.Text;

in the GotFocus event of the textblock (in Page1). This doesn't work :(