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;
}
}
}
}

View File

@@ -1,5 +1,5 @@
<?xml version='1.0' encoding='utf-8'?>
<SettingsFile xmlns="http://schemas.microsoft.com/VisualStudio/2004/01/settings" CurrentProfile="(Default)" GeneratedClassNamespace="VoicemeeterSliders.Gui.Properties" GeneratedClassName="Settings">
<SettingsFile xmlns="http://schemas.microsoft.com/VisualStudio/2004/01/settings" CurrentProfile="(Default)" GeneratedClassNamespace="HidSliders.Gui.Properties" GeneratedClassName="Settings">
<Profiles />
<Settings>
<Setting Name="VMVersion" Type="System.Int32" Scope="User">
@@ -20,5 +20,11 @@
<Setting Name="Channel5Strip" Type="System.Int32" Scope="User">
<Value Profile="(Default)">0</Value>
</Setting>
<Setting Name="AutoConnect" Type="System.Boolean" Scope="User">
<Value Profile="(Default)">False</Value>
</Setting>
<Setting Name="MixerAutoConnect" Type="System.Boolean" Scope="User">
<Value Profile="(Default)">False</Value>
</Setting>
</Settings>
</SettingsFile>