UI Tweaks

This commit is contained in:
Serge
2023-07-19 23:43:26 +02:00
parent e7a4537098
commit a97ab6dbc8
4 changed files with 10 additions and 5 deletions

View File

@@ -134,6 +134,7 @@ namespace GHelper.Display
string? laptopScreen = null; string? laptopScreen = null;
var screens = Screen.AllScreens; var screens = Screen.AllScreens;
/*
if (!isUltimate) if (!isUltimate)
{ {
foreach (var screen in screens ) foreach (var screen in screens )
@@ -142,6 +143,7 @@ namespace GHelper.Display
if (screen.DeviceName == defaultDevice) return defaultDevice; if (screen.DeviceName == defaultDevice) return defaultDevice;
} }
} }
*/
try try
{ {

View File

@@ -668,7 +668,11 @@ namespace GHelper
} }
else else
{ {
labelLeftA0.Text = "CPU Slow (SPL + sPPT)"; if (RyzenControl.IsAMD())
labelLeftA0.Text = "CPU Slow (SPL + sPPT)";
else
labelLeftA0.Text = "CPU (PL1 + PL2)";
labelLeftC1.Text = "CPU Fast (fPPT)"; labelLeftC1.Text = "CPU Fast (fPPT)";
panelC1.Visible = modeC1; panelC1.Visible = modeC1;
} }
@@ -765,7 +769,7 @@ namespace GHelper
try try
{ {
if (chartCount > 2) if (chartCount > 2)
Size = MinimumSize = new Size(0, (int)(ControlHelper.GetDpiScale(this).Value * (chartCount * 200 + 100))); Size = MinimumSize = new Size(Size.Width, (int)(ControlHelper.GetDpiScale(this).Value * (chartCount * 200 + 100)));
} }
catch (Exception ex) catch (Exception ex)
{ {

View File

@@ -2,7 +2,7 @@
<PropertyGroup> <PropertyGroup>
<OutputType>WinExe</OutputType> <OutputType>WinExe</OutputType>
<TargetFramework>net7.0-windows8.0</TargetFramework> <TargetFramework>net7.0-windows</TargetFramework>
<Nullable>enable</Nullable> <Nullable>enable</Nullable>
<UseWindowsForms>True</UseWindowsForms> <UseWindowsForms>True</UseWindowsForms>
<ImplicitUsings>enable</ImplicitUsings> <ImplicitUsings>enable</ImplicitUsings>
@@ -11,7 +11,6 @@
<StartupObject>GHelper.Program</StartupObject> <StartupObject>GHelper.Program</StartupObject>
<ApplicationIcon>favicon.ico</ApplicationIcon> <ApplicationIcon>favicon.ico</ApplicationIcon>
<Platforms>AnyCPU;x64</Platforms> <Platforms>AnyCPU;x64</Platforms>
<SupportedOSPlatformVersion>8.0</SupportedOSPlatformVersion>
<AssemblyName>GHelper</AssemblyName> <AssemblyName>GHelper</AssemblyName>
<PlatformTarget>AnyCPU</PlatformTarget> <PlatformTarget>AnyCPU</PlatformTarget>
<ProduceReferenceAssembly>False</ProduceReferenceAssembly> <ProduceReferenceAssembly>False</ProduceReferenceAssembly>

View File

@@ -1,5 +1,5 @@
{ {
"sdk": { "sdk": {
"version": "7.0.203" "version": "7.0.306"
} }
} }