windows 8.1 - Login with Caliburn.Micro WinRT -


i have loginviewmodel , loginview allows user log app if want access favorites. question how update mainview add "favorites" header grouped gridview , save credentials of user once have logged in. can point me right direction? in advance...

something along how have been storing settings on win81 since there nothing in cm yet storing of settings on page change in windows phone

private applicationdatacontainer _settings;  _settings = new application.data.localsettings  //in oninitialize() or ctor  _settings.values["username"] = username; 

if value doesn't exist in _settings container might require logic set up

if(!_settings.values.contains("username"))    _settings.values.add("username", "");  

as first part of question haven't put thought it... hope steers right direction settings or saving of nature.


Comments

Popular posts from this blog

javascript - Jquery show_hide, what to add in order to make the page scroll to the bottom of the hidden field once button is clicked -

javascript - Highcharts multi-color line -

javascript - Enter key does not work in search box -