WPF 代码设置NotifyIcon图标
程序员文章站
2024-02-10 23:44:40
...
以前做Winform窗口的时候,设置图标非常简便,用WPF还是有区别的。
notifyIcon1.Icon = new Icon(
System.Windows.Application.GetResourceStream(
new Uri(
"Images/Icon/Moana.ico", UriKind.Relative)
).Stream
);