我需要在Windows 10的“系统托盘/通知”区域中的“电池”图标旁边放置“通知”图标。当我使用“ NotifyIcon”类型的可用图标添加图标时,会将图标添加到“系统托盘”的溢出区域。我正在使用C#开发此工具,请让我知道对此的任何见解。
using (NotifyIcon icon = new NotifyIcon())
{
System.Drawing.Icon.ExtractAssociatedIcon("./Image/icon.ico");
icon.Icon = Icon.FromHandle(bmp.GetHicon());
icon.Text = "See your device health";
icon.Click += new System.EventHandler(notifyIcon_Click);
}