use Windows NetworkConnect stock icon for form and tray

SystemIcons.GetStockIcon(StockIconId.NetworkConnect, 32) — no
external files needed.
This commit is contained in:
2026-08-13 08:14:11 +00:00
parent d1e71f0323
commit a2d3643d69
2 changed files with 2 additions and 1 deletions
+1 -1
View File
@@ -11,7 +11,7 @@ static class Program
using var tray = new NotifyIcon
{
Icon = SystemIcons.Application,
Icon = SystemIcons.GetStockIcon(StockIconId.NetworkConnect, 32),
Text = "gatuna",
Visible = true,
};