feat(ui): add ActiveColorScheme user setting

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-04-15 21:49:31 -04:00
parent d15790b948
commit 12f8bbf8f5
2 changed files with 15 additions and 0 deletions
+12
View File
@@ -226,5 +226,17 @@ namespace OpenNest.Properties {
this["CuttingParametersJson"] = value;
}
}
[global::System.Configuration.UserScopedSettingAttribute()]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("Classic")]
public string ActiveColorScheme {
get {
return ((string)(this["ActiveColorScheme"]));
}
set {
this["ActiveColorScheme"] = value;
}
}
}
}
+3
View File
@@ -53,5 +53,8 @@
<Setting Name="CuttingParametersJson" Type="System.String" Scope="User">
<Value Profile="(Default)" />
</Setting>
<Setting Name="ActiveColorScheme" Type="System.String" Scope="User">
<Value Profile="(Default)">Classic</Value>
</Setting>
</Settings>
</SettingsFile>