-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSettings.cs
More file actions
51 lines (44 loc) · 1.47 KB
/
Settings.cs
File metadata and controls
51 lines (44 loc) · 1.47 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
using System.Configuration;
namespace ConfigMerger.Properties
{
internal sealed partial class Settings : ApplicationSettingsBase
{
private static Settings defaultInstance = ((Settings)(ApplicationSettingsBase.Synchronized(new Settings())));
public static Settings Default => defaultInstance;
[UserScopedSetting()]
[DefaultSettingValue("")]
public string LastSourceDirectory
{
get => ((string)(this["LastSourceDirectory"]));
set => this["LastSourceDirectory"] = value;
}
[UserScopedSetting()]
[DefaultSettingValue("")]
public string LastTargetDirectory
{
get => ((string)(this["LastTargetDirectory"]));
set => this["LastTargetDirectory"] = value;
}
[UserScopedSetting()]
[DefaultSettingValue("true")]
public bool CreateBackups
{
get => ((bool)(this["CreateBackups"]));
set => this["CreateBackups"] = value;
}
[UserScopedSetting()]
[DefaultSettingValue("false")]
public bool DarkTheme
{
get => ((bool)(this["DarkTheme"]));
set => this["DarkTheme"] = value;
}
[UserScopedSetting()]
[DefaultSettingValue("true")]
public bool ShowConfirmationDialogs
{
get => ((bool)(this["ShowConfirmationDialogs"]));
set => this["ShowConfirmationDialogs"] = value;
}
}
}