Delphi:左上角丢失图标
发生了一些非常奇怪的事情,我不知道为什么。我丢失了 Delphi 7 应用程序左上角的图标。该图标仍然显示在 Windows 中的可执行文件上。但是在任务栏和左上角,它有默认的应用程序框(对于winXP,顶部有蓝色框,有白色框)
知道什么样的事情可能会导致这样的事情吗?
Something very strange happened and I have no idea why. I've lost the icon in the top left corner for my Delphi 7 application. The icon still shows up attached to the executable in windows. But on the task bar and the top left corner, it's got the default Application box (for winXP Blue bar on top with white box)
Any idea what kind of a thing might cause such a thing?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
正如 X-Ray 告诉您的那样,请确保 {$R *.res} 位于项目源代码(项目/查看源代码)中 - 就在“开始”之前。如果它已经存在,请尝试重新设置应用程序 ICO(项目/选项)和/或主窗体图标(From1.Icon),然后“构建所有项目”以查看是否有帮助。
另请确保使用有效的 Windows 图标。
As X-Ray told you make sure {$R *.res} is in the project source (Project / View Source) - just before "begin". If it's already there, try to re-set the application ICO (Project / Options) and/or main form icon (From1.Icon) and then "Build all projects" to see if it helps.
Also be sure to use a valid Windows Icon.
使用delphi 的图像编辑器检查应用程序的项目资源。
确保 .dpr 文件中有 {$R *.res}。
check your app's project resource using delphi's Image Editor.
make sure you have {$R *.res} in your .dpr file.