Change notify icon to white for FanControl

This commit is contained in:
Kamil Trzciński 2022-12-14 21:18:57 +01:00
parent c4fd544cc2
commit e3f3f63270
6 changed files with 213 additions and 13 deletions

View file

@ -34,6 +34,7 @@ namespace FanControl
notifyIcon.Text = Text;
notifyIcon.Visible = true;
notifyIcon.Icon = WindowsDarkMode.IsDarkModeEnabled ? Resources.fan_white : Resources.fan;
TopMost = Settings.Default.AlwaysOnTop;
toolStripMenuItemAlwaysOnTop.Checked = TopMost;
@ -162,6 +163,8 @@ namespace FanControl
private void propertyGridUpdateTimer_Tick(object sender, EventArgs e)
{
notifyIcon.Icon = WindowsDarkMode.IsDarkModeEnabled ? Resources.fan_white : Resources.fan;
if (!Visible)
return;