c# - Isolated Storage Settings In wp 8.1 -


what can in case :

"i want when close app save (visible textblock)"

private isolatedstoragesettings appsettings = isolatedstoragesettings.applicationsettings;        private void button_click(object sender, routedeventargs e)     {         appsettings["name"] = textblock.visibility;         textblock.visibility = visibility.visible;     } 

i use in windows phone 8.1 (silverlight)

in app.xaml.cs file need implement code in application_closing event retrieve visibility property page , save applicationsettings.

it's called tombstoning , documented part of windows phone application lifecycle.


Comments

Popular posts from this blog

searchKeyword not working in AngularJS filter -

sequelize.js - Sequelize: sort by enum cases -

user interface - how to replace an ongoing process of image capture from another process call over the same ImageLabel in python's GUI TKinter -