-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSettings.cs
47 lines (42 loc) · 838 Bytes
/
Settings.cs
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
using System.Runtime.CompilerServices;
using System.CodeDom.Compiler;
using System.Configuration;
using System.Diagnostics;
using System;
namespace xk3yDVDMenu.Properties
{
[CompilerGenerated]
[GeneratedCode("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "10.0.0.0")]
internal sealed class Settings : ApplicationSettingsBase
{
private static Settings defaultInstance;
public static Settings Default
{
get
{
return Settings.defaultInstance;
}
}
[DefaultSettingValue("")]
[UserScopedSetting]
[DebuggerNonUserCode]
public string DVDStylePath
{
get
{
return (string)this["DVDStylePath"];
}
set
{
this["DVDStylePath"] = value;
}
}
static Settings()
{
Settings.defaultInstance = (Settings)SettingsBase.Synchronized(new Settings());
}
public Settings()
{
}
}
}