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 は、アプリケーションに対して使用できます。Application NameSpace でプロパティを参照する必要があります。
WpfApplication1.Properties.Settings.Default.Save();
WpfApplication1アプリケーションの名前空間はどこにありますか。
WpfApplication1