Added splitter to SectionServerFiles and

This commit is contained in:
Brett Hewitson 2021-11-12 15:37:47 +10:00
parent a28fc8f9b3
commit 6377fe9c5c
4 changed files with 115 additions and 16 deletions

View file

@ -2671,5 +2671,53 @@ namespace ServerManagerTool {
this["CustomLevelsGridHeight"] = value;
}
}
[global::System.Configuration.UserScopedSettingAttribute()]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("400")]
public global::System.Windows.GridLength CustomEngineSettingsGridHeight {
get {
return ((global::System.Windows.GridLength)(this["CustomEngineSettingsGridHeight"]));
}
set {
this["CustomEngineSettingsGridHeight"] = value;
}
}
[global::System.Configuration.UserScopedSettingAttribute()]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("400")]
public global::System.Windows.GridLength CustomGameSettingsGridHeight {
get {
return ((global::System.Windows.GridLength)(this["CustomGameSettingsGridHeight"]));
}
set {
this["CustomGameSettingsGridHeight"] = value;
}
}
[global::System.Configuration.UserScopedSettingAttribute()]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("400")]
public global::System.Windows.GridLength CustomGameUserSettingsGridHeight {
get {
return ((global::System.Windows.GridLength)(this["CustomGameUserSettingsGridHeight"]));
}
set {
this["CustomGameUserSettingsGridHeight"] = value;
}
}
[global::System.Configuration.UserScopedSettingAttribute()]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("250")]
public global::System.Windows.GridLength ServerFilesGridHeight {
get {
return ((global::System.Windows.GridLength)(this["ServerFilesGridHeight"]));
}
set {
this["ServerFilesGridHeight"] = value;
}
}
}
}