赢得EXE的符合图标
在Visual Studio中的C#上发布Windows表单应用程序之后,我想设置EXE文件的图标。 我要做的:project-> properties-> icon->浏览并设置file.ico 重建一个项目,出版,但什么都没有发生。已发布的应用程序仍然具有DEAFULT图标。我在做什么错?
UPD:是的,我已经阅读了Microsoft的指南,并试图将图标添加为资源。它无效。 (图标是有效的,我还尝试使用资源中的默认生成的图标)
upd2:我正确地完成了所有操作,但是我拍摄了setup.exe文件将具有图标。我错了。 ProgramM将与其他程序中的文件夹中的图标相吻合。
I'd like to set icon of exe file, after publishing windows forms application on C# in Visual Studio.
What i do: Project->properties->icon->browse and setting the file.ico
rebuilding a project, publishing but nothing happends. published app still has deafult icon. What im doing wrong?
UPD: yes, i have read guide by microsoft and tried to add icon as resource. It takes no effect. (icon is valid and i also tried to use default generated icon from resource)
UPD2: I did everything correctly, but i tought that setup.exe file will have the icon. This where i was wrong. Programm will crieate icon, in folder with other programms.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您的.exe找不到.ICO文件的目录。要解决此问题,您可以在
资源 - >中添加.ICO文件。添加资源
。在应用程序中选择图标 - >资源 - >图标和清单 - >选择您的图标
。Your .exe can't find the directory of .ico file. To fix this you can add .ico file in
Resources -> Add Resource
. Select the icon inApplication -> Resources -> Icon and manifest -> select your icon
.