3 Commits
Author SHA1 Message Date
krjan02 fdf4bd22eb Version 1.0.1 (Dynamic Icon, Update Checker, Wired Support)
Build and Relase / create-release (push) Successful in 25s
Build and Relase / build-release (push) Successful in 1m38s
2025-01-13 23:25:36 +01:00
krjan02 86ac38324e renamed file - modified csproj 2025-01-13 23:24:53 +01:00
krjan02 116750ec58 Added dynamic icon (displays battery state) 2025-01-13 23:24:22 +01:00
4 changed files with 75 additions and 6 deletions
+67
View File
@@ -0,0 +1,67 @@
using System;
using System.Collections.Generic;
using System.Drawing.Imaging;
using System.Drawing;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Drawing.Text;
namespace SoraV2Utils_Agent
{
internal class DynamicIcon
{
public static Icon CreateIcon(string text, Color textColor, Font font)
{
if (string.IsNullOrEmpty(text) || text.Length > 3)
throw new ArgumentException("Text must be between 1 and 3 characters long.", nameof(text));
// Create a 32x32 transparent bitmap
using (Bitmap bitmap = new Bitmap(32, 32))
{
using (Graphics g = Graphics.FromImage(bitmap))
{
// Set up transparency
g.Clear(Color.Transparent);
// Enable anti-aliasing for smoother text
g.TextRenderingHint = System.Drawing.Text.TextRenderingHint.AntiAlias;
// Determine the largest font size that will fit within 32x32
float maxFontSize = 48; // Start with a large font size
SizeF textSize;
Font adjustedFont;
do
{
maxFontSize--;
adjustedFont = new Font(font.FontFamily, maxFontSize, font.Style);
textSize = g.MeasureString(text, adjustedFont);
}
while ((textSize.Width > 42 || textSize.Height > 42) && maxFontSize > 1);
if (textSize.Width > 42 || textSize.Height > 42)
{
// Reduce back if the scaled size exceeds 32x32
maxFontSize /= 1.25f;
adjustedFont = new Font(font.FontFamily, maxFontSize, font.Style);
textSize = g.MeasureString(text, adjustedFont);
}
// Calculate the position to center the text
float x = (32 - textSize.Width) / 2;
float y = (32 - textSize.Height) / 2;
// Draw the text
using (SolidBrush textBrush = new SolidBrush(textColor))
{
g.DrawString(text, adjustedFont, textBrush, x, y);
}
}
// Create and return the icon
return Icon.FromHandle(bitmap.GetHicon());
}
}
}
}
+1 -1
View File
@@ -28,7 +28,7 @@ namespace SoraV2Utils_Agent
System.Environment.Exit(1);
}; ;
var trayicon = new TrayIcon();
var trayicon = new TrayIconForm();
trayicon.Display();
}
}
+2 -1
View File
@@ -74,6 +74,7 @@
<Reference Include="Windows.UI" />
</ItemGroup>
<ItemGroup>
<Compile Include="DynamicIcon.cs" />
<Compile Include="NotificationInstaller.cs">
<SubType>Component</SubType>
</Compile>
@@ -85,7 +86,7 @@
<Compile Include="Program.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="ServiceMonitor.cs" />
<Compile Include="TrayIcon.cs" />
<Compile Include="TrayIconForm.cs" />
<Compile Include="UpdateCheck.cs" />
</ItemGroup>
<ItemGroup>
@@ -9,15 +9,15 @@ using System.Threading;
namespace SoraV2Utils_Agent
{
public class TrayIcon
public class TrayIconForm
{
public TrayIcon()
public TrayIconForm()
{
// Create a NotifyIcon instance
using (NotifyIcon trayIcon = new NotifyIcon())
{
// Set up the tray icon properties
trayIcon.Icon = new Icon(SystemIcons.WinLogo, 40, 40); // Choose your own icon
trayIcon.Icon = new Icon(DynamicIcon.CreateIcon("##",Color.Red, SystemFonts.IconTitleFont), 40, 40); // Choose your own icon
trayIcon.Visible = true;
// Create a context menu
@@ -54,6 +54,7 @@ namespace SoraV2Utils_Agent
batteryLevelItem.Text = batteryLevelText;
batteryRuntimeItem.Text = $"Battery Runtime: {batteryRuntimeText}";
batteryRuntimeItem.Text = $"Battery Runtime: {batteryRuntimeText}";
trayIcon.Icon = new Icon(DynamicIcon.CreateIcon(ServiceIPC.DeviceStatus.Battery.ToString(), Color.White, new Font("Arial",32)), 32, 32);
// Update every second
Thread.Sleep(1000);