Server Monitor window now stores it's location.

This commit is contained in:
Brett Hewitson 2021-12-09 20:33:14 +10:00
parent 77cac3329a
commit 72a0c342c3
14 changed files with 110 additions and 12 deletions

View file

@ -2115,5 +2115,29 @@ namespace ServerManagerTool {
this["AllowDiscordStop"] = value;
}
}
[global::System.Configuration.UserScopedSettingAttribute()]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("50")]
public double ServerMonitorWindow_Left {
get {
return ((double)(this["ServerMonitorWindow_Left"]));
}
set {
this["ServerMonitorWindow_Left"] = value;
}
}
[global::System.Configuration.UserScopedSettingAttribute()]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("50")]
public double ServerMonitorWindow_Top {
get {
return ((double)(this["ServerMonitorWindow_Top"]));
}
set {
this["ServerMonitorWindow_Top"] = value;
}
}
}
}