mirror of
https://github.com/tribufu/ServerManagers
synced 2026-05-06 15:17:34 +00:00
1. Main window now stored the Left and Top positions.
2. Added global setting to set the start mode of the Main Window.
This commit is contained in:
parent
229ee09049
commit
34582ca91b
20 changed files with 286 additions and 58 deletions
36
src/ConanServerManager/Config.Designer.cs
generated
36
src/ConanServerManager/Config.Designer.cs
generated
|
|
@ -1896,5 +1896,41 @@ namespace ServerManagerTool {
|
|||
this["ManagePublicIPAutomatically"] = value;
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Configuration.UserScopedSettingAttribute()]
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
[global::System.Configuration.DefaultSettingValueAttribute("50")]
|
||||
public double MainWindow_Left {
|
||||
get {
|
||||
return ((double)(this["MainWindow_Left"]));
|
||||
}
|
||||
set {
|
||||
this["MainWindow_Left"] = value;
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Configuration.UserScopedSettingAttribute()]
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
[global::System.Configuration.DefaultSettingValueAttribute("50")]
|
||||
public double MainWindow_Top {
|
||||
get {
|
||||
return ((double)(this["MainWindow_Top"]));
|
||||
}
|
||||
set {
|
||||
this["MainWindow_Top"] = value;
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Configuration.UserScopedSettingAttribute()]
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
[global::System.Configuration.DefaultSettingValueAttribute("Normal")]
|
||||
public global::System.Windows.WindowState MainWindow_WindowState {
|
||||
get {
|
||||
return ((global::System.Windows.WindowState)(this["MainWindow_WindowState"]));
|
||||
}
|
||||
set {
|
||||
this["MainWindow_WindowState"] = value;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue