远程桌面连接 (Windows XP) 期间我的托盘图标看起来很糟糕
我正在编写一个带有托盘图标(显示在系统时钟旁边)的 Windows 应用程序。如果我在 Windows XP 上的正常(控制台)会话中运行该图标,该图标本身看起来不错,但是当我使用远程桌面连接连接到同一台 Windows XP 计算机时,托盘图标看起来很糟糕 — 侧面有锯齿状边缘。请注意,其余的托盘图标看起来都不错,只是我的图标看起来很糟糕。那么这里的秘密是什么呢?
I'm writing a Windows app that has a tray icon (displayed next to the system clock). The icon itself looks nice if I run it on Windows XP in a normal (console) session, but when I connect to the same Windows XP machine using Remote Desktop Connection the tray icon looks bad—with jagged edges on the side. Note that the rest of the tray icons look fine, it's just mine that looks crappy. So what is the secret here?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我过去也遇到过同样的问题。您必须使用
LoadImage
函数加载图标(而不是使用LoadIcon
)。I faced the same issue in the past. You have to load icon with
LoadImage
function (not withLoadIcon
).屏幕截图会很有帮助,但我猜这与您在两个会话中使用的颜色深度有关。如果其中一个的质量高于另一个,则图标的呈现方式可能会有所不同。
您可以在远程桌面连接设置的显示选项卡中更改颜色深度。
Screenshots would be helpful, but I'm guessing it's to do with the colour depth that you're using in the two sessions. If the quality in one is higher than in the other, the icon may render differently.
You can change the colour depth in the display tab of the Remote Desktop Connection settings.