c# - tutorial create and use a configuration file manager -
hello novice , wish use configuration manager file in wpf insert variables there use in method have example of file , of how use it?
thank help
if using wpf, use app settings store , retrieve so
//saveselection name of variable properties.settings.default.saveselection = txtname.text; //to commit save properties.settings.default.save();
to access settings , make variables availible right click on application -> properties -> settings add variables here
you can retrieve same way set them
txtname.text = properties.settings.default.saveselection;
Comments
Post a Comment