本文介绍了保存Properties.Settings时出现问题的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

嗨专家

我正在使用代码来保存我的设置(在类库中),没有任何例外,但是我的设置从未更改.
我该怎么办才能解决问题?

hi experts

I''m using the code for saving my settings (in Class Library) not any exceptions but my Settings never change.
What can I do for solve the problem?

Properties.Settings.Default.ProgramTitle = head;
Properties.Settings.Default.PageTitle= title;
Properties.Settings.Default.MaxItemsForShowing = maxItems;
Properties.Settings.Default.MinItemsForShowing = minItems;

Properties.Settings.Default.Save();



它们的范围是用户".



Their scope are "User"

推荐答案



这篇关于保存Properties.Settings时出现问题的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-14 17:18