Auto start support

This commit is contained in:
2014-05-03 09:52:08 -04:00
parent e54a557d6d
commit 043daea51e
4 changed files with 30 additions and 1 deletions

View File

@@ -82,5 +82,17 @@ namespace SystemTemperatureStatusWindow.Properties {
this["AlertLevel"] = value;
}
}
[global::System.Configuration.UserScopedSettingAttribute()]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("True")]
public bool AutoStart {
get {
return ((bool)(this["AutoStart"]));
}
set {
this["AutoStart"] = value;
}
}
}
}