Added server monitor window startup state to global settings.

This commit is contained in:
Brett Hewitson 2022-01-25 12:53:13 +10:00
parent 09938ce932
commit bcb7dce84e
18 changed files with 122 additions and 32 deletions

View file

@ -3102,5 +3102,17 @@ namespace ServerManagerTool {
this["ServerStartMinimized"] = value;
}
}
[global::System.Configuration.UserScopedSettingAttribute()]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("Normal")]
public global::System.Windows.WindowState ServerMonitorWindow_WindowState {
get {
return ((global::System.Windows.WindowState)(this["ServerMonitorWindow_WindowState"]));
}
set {
this["ServerMonitorWindow_WindowState"] = value;
}
}
}
}