Added new option to start the server windows minimzed.

This commit is contained in:
Brett Hewitson 2022-01-14 17:44:34 +10:00
parent 7c1ab95d58
commit d2ce321273
16 changed files with 108 additions and 8 deletions

View file

@ -2273,5 +2273,17 @@ namespace ServerManagerTool {
this["CheckIfServerManagerRunningOnStartup"] = value;
}
}
[global::System.Configuration.UserScopedSettingAttribute()]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("False")]
public bool ServerStartMinimized {
get {
return ((bool)(this["ServerStartMinimized"]));
}
set {
this["ServerStartMinimized"] = value;
}
}
}
}