Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
public partial class App : Application { private void OnExit(object sender, ExitEventArgs e) { Properties.Settings.Default.save(); } }
如何解决这个问题?有什么地方需要“注册”我的设置吗?挥动线位于设置下方。
Properties.Settings 可用于您的应用程序。您必须使用应用程序名称空间引用属性。
WpfApplication1.Properties.Settings.Default.Save();
WpfApplication1您的应用程序的命名空间在哪里。
WpfApplication1