diff --git a/SIC Simulator/Form1.cs b/SIC Simulator/Form1.cs index c447611..9dcd967 100644 --- a/SIC Simulator/Form1.cs +++ b/SIC Simulator/Form1.cs @@ -1383,6 +1383,16 @@ private void ApplyThemeToControl(Control control, Color backColor, Color foreCol toolStrip.ForeColor = foreColor; } + if ( control is TabControl tbControl) + { + foreach ( TabPage tp in tbControl.TabPages) + { + tp.BackColor = backColor; + tp.ForeColor = foreColor; + tp.UseVisualStyleBackColor = true; + } + } + foreach (Control child in control.Controls) { ApplyThemeToControl(child, backColor, foreColor); diff --git a/SIC Simulator/Properties/AssemblyInfo.cs b/SIC Simulator/Properties/AssemblyInfo.cs index 64fe9ed..35ea500 100644 --- a/SIC Simulator/Properties/AssemblyInfo.cs +++ b/SIC Simulator/Properties/AssemblyInfo.cs @@ -10,7 +10,7 @@ [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("Scott Piersall and Students")] [assembly: AssemblyProduct("SIC Simulator")] -[assembly: AssemblyCopyright("Copyright © 2020 2021")] +[assembly: AssemblyCopyright("Copyright © 2020 2021 2024")] [assembly: AssemblyTrademark("")] [assembly: AssemblyCulture("")] @@ -32,5 +32,5 @@ // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("21.12.16.1")] -[assembly: AssemblyFileVersion("21.12.16.1")] +[assembly: AssemblyVersion("24.12.7.1")] +[assembly: AssemblyFileVersion("24.12.7.1")] diff --git a/SICVM_UnitTests/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache b/SICVM_UnitTests/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache index a1f49c0..adc50cc 100644 Binary files a/SICVM_UnitTests/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache and b/SICVM_UnitTests/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache differ diff --git a/SICVM_UnitTests/obj/Debug/SICVM_UnitTests.csproj.AssemblyReference.cache b/SICVM_UnitTests/obj/Debug/SICVM_UnitTests.csproj.AssemblyReference.cache index b9343ec..97095ac 100644 Binary files a/SICVM_UnitTests/obj/Debug/SICVM_UnitTests.csproj.AssemblyReference.cache and b/SICVM_UnitTests/obj/Debug/SICVM_UnitTests.csproj.AssemblyReference.cache differ