App autostart update and UI refinement

This commit is contained in:
2024-04-10 19:43:06 -05:00
parent 880274554c
commit ac36aeb3cf
7 changed files with 350 additions and 48 deletions

View File

@@ -94,5 +94,29 @@ namespace HidSliders.Gui.Properties {
this["Channel5Strip"] = value;
}
}
[global::System.Configuration.UserScopedSettingAttribute()]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("False")]
public bool AutoConnect {
get {
return ((bool)(this["AutoConnect"]));
}
set {
this["AutoConnect"] = value;
}
}
[global::System.Configuration.UserScopedSettingAttribute()]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("False")]
public bool MixerAutoConnect {
get {
return ((bool)(this["MixerAutoConnect"]));
}
set {
this["MixerAutoConnect"] = value;
}
}
}
}