Added windows startup options

UI refinements
This commit is contained in:
Darren Ohonba - Evans
2024-05-23 04:08:53 +01:00
parent 4198df7c23
commit cccb93f739
6 changed files with 469 additions and 204 deletions

View File

@@ -82,5 +82,41 @@ namespace AsusFanControlGUI.Properties {
this["FanCurvePoints"] = value;
}
}
[global::System.Configuration.UserScopedSettingAttribute()]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("False")]
public bool allowFanCurveSettingViaText {
get {
return ((bool)(this["allowFanCurveSettingViaText"]));
}
set {
this["allowFanCurveSettingViaText"] = value;
}
}
[global::System.Configuration.UserScopedSettingAttribute()]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("False")]
public bool startWithWindows {
get {
return ((bool)(this["startWithWindows"]));
}
set {
this["startWithWindows"] = value;
}
}
[global::System.Configuration.UserScopedSettingAttribute()]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("False")]
public bool startMinimised {
get {
return ((bool)(this["startMinimised"]));
}
set {
this["startMinimised"] = value;
}
}
}
}