发送通知时的WPF应用程序图标在Windows 10中是像素化的

时间:2016-05-23 13:33:11

标签: wpf notification-icons

我有一个显示气球提示/通知的应用程序。当我升级到Windows 10时,应用程序图标是像素化的。

这就是它的样子 http://screencast.com/t/A5lb2RW1jf

以下是我显示通知的方式:

NotifyIcon notifyIcon = new NotifyIcon();
notifyIcon.BalloonTipTitle = balloonTipTitle;
notifyIcon.BalloonTipText = ballonTipText;
notifyIcon.Text = text;
notifyIcon.ShowBalloonTip(500);

顺便说一下,我正在使用多层图标。我有一个16x16,32x32,48x48和256x256

我错过了什么吗?有任何想法吗?感谢

0 个答案:

没有答案