【C#】【Form】アプリの設定ファイル

    ■ はじめに

 以下の関連記事で行った設定をファイル保存することについて、
ピックアップする
アプリ状態を復元する仕組みを考える
https://dk521123.hatenablog.com/entry/37889424

 

    ■ 操作

    値の設定

Properties.Settings.Default.【キー】 = 【設定値】;

Properties.Settings.Default.HelloWorld = "Hello World, Mike!";

    保存

Properties.Settings.Default.Save();

 

    ■ 使用上の注意

    設定ファイルの格納場所

C:\Users\【アカウント名】\AppData\Local\【アプリ名】\【ランダム?文字列】\user.config
 => bin配下の「XXXXXX.exe.config」ではない

 

 

    関連記事

    Windows Form

Windows Form ~ 目次 ~
https://dk521123.hatenablog.com/entry/8054245
アプリ状態を復元する仕組みを考える
https://dk521123.hatenablog.com/entry/37889424