Added themes

This commit is contained in:
2024-05-27 20:10:52 +03:00
parent d3dd29f4bf
commit 83115d72a4
8 changed files with 261 additions and 22 deletions

View File

@@ -35,7 +35,8 @@ public class SettingsDictionary<TKey, TValue>
if(!File.Exists(_File))
{
_Dictionary = new Dictionary<TKey, TValue>();
return false;
await SaveToFile();
return true;
}
string fileAsText = await File.ReadAllTextAsync(_File);